https://issues.dlang.org/show_bug.cgi?id=12592
Nick Treleaven <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|std.algorithm.keep? |std.algorithm.keep to | |filter range elements and | |write back to the source | |range --- Comment #4 from Nick Treleaven <[email protected]> --- > assert(data.dup.sort.release.group.map!(a => a[0]).equal([2, 3, 4, 10])); map does not produce an array, that's the idea. In fact using `group.map` is more complicated than just using `uniq`. --
