Re: Deduplicating Template Parameter List of std.variant.Algebraic

2015-09-25 Thread Nordlöw via Digitalmars-d-learn
On Thursday, 24 September 2015 at 20:20:42 UTC, Nordlöw wrote: I just noticed that Algebraic doesn't deduplicate its types before construction because this compiles: import std.variant : Algebraic; auto x = Algebraic!(int, int)(5); Is this really sane? How can a template parameter

Re: Deduplicating Template Parameter List of std.variant.Algebraic

2015-09-25 Thread Meta via Digitalmars-d-learn
On Friday, 25 September 2015 at 16:08:41 UTC, Nordlöw wrote: How can a template parameter list be deduplicated or sorted? You can use http://dlang.org/phobos/std_meta.html#.NoDuplicates. I imagine this was an oversight in the implementation of Algebraic.

Re: Deduplicating Template Parameter List of std.variant.Algebraic

2015-09-25 Thread Nordlöw via Digitalmars-d-learn
On Friday, 25 September 2015 at 18:11:51 UTC, Meta wrote: You can use http://dlang.org/phobos/std_meta.html#.NoDuplicates. I imagine this was an oversight in the implementation of Algebraic. Thanks