Can be used to construct a meta function that checks if a symbol is of a type.
import std.meta : allSatisfy; static assert(typeOf!int(3)); static assert(allSatisfy!(typeOf!int, 3));
See Implementation
Can be used to construct a meta function that checks if a symbol is of a type.