Aes.expand

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.)

struct Aes
Types expand;

Examples

auto t = tuple(1, " hello ", 2.3);
writeln(t);        // Tuple!(int, string, double)(1, " hello ", 2.3)
writeln(t.expand); // 1 hello 2.3

Meta