Type sequence.
$(D_KEYWORD true) if all Types are the same, $(D_KEYWORD false) otherwise.
static assert(allSameType!()); static assert(allSameType!int); static assert(allSameType!(int, int, int)); static assert(!allSameType!(int, uint, int)); static assert(!allSameType!(int, uint, short));
Determines whether all Types are the same.
If Types is empty, returns $(D_KEYWORD true).