aboutsummaryrefslogtreecommitdiff
path: root/src/type.h
blob: 1149520e48625cfc3e38e5b5d3e131c0d452a6dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef TYPEASVALUE_SRC_TYPE_H_
#define TYPEASVALUE_SRC_TYPE_H_

#include <type_traits>

namespace tav {

template <int Value>
using Int = typename std::integral_constant<int, Value>::type;

template <bool Value>
using Boolean = typename std::integral_constant<bool, Value>::type;

template <
	typename X,
	typename Y
>
using equal_type = typename std::integral_constant<
	bool,
	std::is_same<typename X::value_type, typename Y::value_type>::value
>::type;

}

#endif  // TYPEASVALUE_SRC_TYPE_H_