https://issues.dlang.org/show_bug.cgi?id=5489

Seb <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull
                 CC|                            |[email protected]
           Assignee|[email protected]        |[email protected]

--- Comment #2 from Seb <[email protected]> ---
This already works if you combine .expand with std.range.only:

```
import std.algorithm, std.range, std.stdio, std.typecons;
auto t = tuple(1, 2);
t.expand.only.sum.writeln;
```

PR to add this as an example: https://github.com/dlang/phobos/pull/5953

--

Reply via email to