Removes the first occurrence of T from the alias sequence $(D_PARAL L).
The item to be removed.
Alias sequence.
L with the first occurrence of T removed.
static assert(is(Erase!(int, short, int, int, uint) == AliasSeq!(short, int, uint))); static assert(is(Erase!(int, short, uint) == AliasSeq!(short, uint)));
See Implementation
Removes the first occurrence of T from the alias sequence $(D_PARAL L).