Use t.expand for a tuple t to expand it into its components. The result of expand acts as if the tuple components were listed as a list of values. (Ordinarily, a Tuple acts as a single value.)
auto t = tuple(1, " hello ", 2.3); writeln(t); // Tuple!(int, string, double)(1, " hello ", 2.3) writeln(t.expand); // 1 hello 2.3
See Implementation
Use t.expand for a tuple t to expand it into its components. The result of expand acts as if the tuple components were listed as a list of values. (Ordinarily, a Tuple acts as a single value.)