isType

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

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

Examples

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

Meta