10 template <
class E,
class Integer,
11 std::enable_if_t<std::is_enum<E>::value,
int> = 0>
12 constexpr
bool is_a(E a, Integer b)
14 return (
int(a) &
int(b)) != 0;
Definition: datacollectorinterface.hh:9
constexpr bool is_a(E a, Integer b)
Definition: enum.hh:12