isType

true iff T is a type. Usable for analysing generic tuples.

  1. eponymoustemplate isType(T)
    enum isType (
    T
    )
  2. eponymoustemplate isType(alias T)

Examples

t
{
	static assert(isType!int && isType!string);
	static assert(!isType!0 && !isType!"str");
	static assert(!isType!isType

Meta