Reverse

Returns an AliasSeq created from args with the order reversed.

template Reverse (
args...
) {}

Examples

alias Types = AliasSeq!(int, long, long, int, float, byte, ubyte, short, ushort, uint);

alias TL = Reverse!(Types);
static assert(is(TL == AliasSeq!(uint, ushort, short, ubyte, byte, float, int, long, long, int)));

Meta