https://issues.dlang.org/show_bug.cgi?id=11084
Seb <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #4 from Seb <[email protected]> --- There's cumulativeFold since 2.072: --- import std.algorithm, std.range, std.stdio; void main() { 10.iota.cumulativeFold!((a, b) => a + b).writeln; } --- https://run.dlang.io/is/YIh6I8 --
