blob: 74e06509ad0dc3eefa60f854f0f0eb7ef76b677c (
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
26
27
28
29
30
31
32
33
34
35
36
37
|
#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 <std::size_t Value>
using Size = typename std::integral_constant<std::size_t, 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;
template <
typename X,
typename Y
>
using equal_value = typename std::integral_constant<
bool,
X::value == Y::value
>::type;
}
#endif // TYPEASVALUE_SRC_TYPE_H_
|