Aliases itself to whether or not a type is an enum.
For use with std.meta.Filter, std.traits.allSatisfy and similar, which cannot take is() expressions.
enum E { a, b, c } static assert( isEnum!E); static assert(!isEnum!int); static assert(!isEnum!string);
Aliases itself to whether or not a type is an enum.
For use with std.meta.Filter, std.traits.allSatisfy and similar, which cannot take is() expressions.