The number of times to repeat L.
The sequence to be repeated.
L repeated n times.
static assert(is(Repeat!(1, uint, int) == AliasSeq!(uint, int))); static assert(is(Repeat!(2, uint, int) == AliasSeq!(uint, int, uint, int))); static assert(is(Repeat!(3) == AliasSeq!()));
See Implementation