On 19/02/2015 04:38, thedeemon wrote:int x, y, z, age; string name;let (name, age) = getTuple(); // tuple let (x,y,z) = argv[1..4].map!(to!int); // lazy range let (x,y,z) = [1,2,3]; // array SomeStruct s; let (s.a, s.b) = tuple(3, "piggies");Alternatively std.typetuple.TypeTuple can be used instead of let
not for ranges and arrays though
