Go to the documentation of this file. 6 template <
bool,
class T =
void>
struct enable_if {};
10 template <
class T>
struct disable_if<true, T> {};
12 template <
typename T>
struct is_boolean {
static const bool value =
false; };
13 template <>
struct is_boolean<bool> {
static const bool value =
true; };