https://issues.dlang.org/show_bug.cgi?id=12530
Nick Treleaven <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from Nick Treleaven <[email protected]> --- > auto b = TypeTuple!(int, int, int)(1); //(1, 1, 1) ... > TypeTuple!(int, int, int) a = ...; > TypeTuple!(int, int, int) b = TypeTuple!(int, int, int)(a); Not uniform initialization, but you can do: import std.meta: AliasSeq; AliasSeq!(int, int, int) vs = 1; assert(vs == AliasSeq!(1, 1, 1)); AliasSeq!(int, int, int) xs = vs; --
