Returns an AliasSeq created from args[1 .. $] with the first occurrence, if any, of args[0] removed.
alias Types = AliasSeq!(int, long, double, char); alias TL = Erase!(long, Types); static assert(is(TL == AliasSeq!(int, double, char)));
See Implementation
Returns an AliasSeq created from args[1 .. $] with the first occurrence, if any, of args[0] removed.