2
3
4
5
6
7
8
9
10
11
13#ifndef LIBSOCKCANPP_INCLUDE_ENUMCHECK_HPP
14#define LIBSOCKCANPP_INCLUDE_ENUMCHECK_HPP
18 template<
typename EnumType, EnumType... Values>
21 template<
typename EnumType>
22 class EnumCheck<EnumType> {
24 template<
typename IntType>
25 static bool constexpr is_value(IntType) {
return false; }
28 template<
typename EnumType, EnumType V, EnumType... Next>
29 class EnumCheck<EnumType, V, Next...> :
private EnumCheck<EnumType, Next...> {
30 using super = EnumCheck<EnumType, Next...>;
33 template<
typename IntType>
35 return v ==
static_cast<IntType>(V) || super::is_value(v);
static bool constexpr is_value(IntType v)
static bool constexpr is_value(IntType)