phobos
phobos copied to clipboard
The standard library of the D programming language
…mplate bloat Trivial review, @thewilsonator.
rebases #3310
Thanks a lot to @MartinNowak for suggesting this solution on Slack. CC @RazvanN7
Putting it out in the open just to get early feedback. See also: https://forum.dlang.org/post/[email protected]
Alias parameters accept basic types so various overloads are unnecessary now. E.g.: ```d template Replace(T, U, TList...); template Replace(alias T, U, TList...); template Replace(T, alias U, TList...); template Replace(alias T,...