> However, they can return std.typecons.Tuple, so you could do this:
>
> auto foo(int i, int j) {
> writeln(i, " ", j);
> return tuple(3,4);
> }
> void main() {
> foo(foo(1,2).field);
> }
> "field" is deprecated in favor of "expand"
> However, they can return std.typecons.Tuple, so you could do this:
>
> auto foo(int i, int j) {
> writeln(i, " ", j);
> return tuple(3,4);
> }
> void main() {
> foo(foo(1,2).field);
> }
> "field" is deprecated in favor of "expand"