ReplaceAll

Returns an AliasSeq created from TList with all occurrences of T, if found, replaced with U.

Examples

alias Types = AliasSeq!(int, long, long, int, float);

alias TL = ReplaceAll!(long, char, Types);
static assert(is(TL == AliasSeq!(int, char, char, int, float)));
Suggestion Box / Bug Report