L with the first occurrence of T replaced.
static assert(is(Replace!(int, uint, int) == AliasSeq!(uint))); static assert(is(Replace!(int, uint, short, int, int, ushort) == AliasSeq!(short, uint, int, ushort))); static assert(Replace!(5, 8, 1, 2, 5, 5) == AliasSeq!(1, 2, 8, 5));
Replaces the first occurrence of T in L with U.