isBoolean

Detect whether T is a built-in boolean type.

enum bool isBoolean(T);

Examples

static assert( isBoolean!bool);
enum EB : bool { a = true }
static assert( isBoolean!EB);
static assert(!isBoolean!(SubTypeOf!bool));

Meta

Suggestion Box / Bug Report