Allows to fast retreiving results from functions that returns a tuple.
Example
Tuple!(int, string) foo() { return tuple(1, "a"); } int x; string y; tie!(x,y) = foo(); assert(x == 1 && y == "a");
See Implementation
Allows to fast retreiving results from functions that returns a tuple.