Type list.
The largest type.
static assert(is(Largest!(int, short, uint) == int)); static assert(is(Largest!(short) == short)); static assert(is(Largest!(ubyte[8], ubyte[5]) == ubyte[8])); static assert(!is(Largest!(short, 5)));
$(D_PSYMBOL Smallest).
Finds the type with the largest size in the Args list. If several types have the same type, the leftmost is returned.