https://issues.dlang.org/show_bug.cgi?id=14183
Issue ID: 14183
Summary: Updates to groupBy
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P1
Component: Phobos
Assignee: [email protected]
Reporter: [email protected]
At Andrei's request:
http://forum.dlang.org/thread/[email protected]
Paraphrased, taking into account amendments:
* Perhaps rename groupBy to chunkBy. People coming from SQL and other
languages might expect groupBy to do hash-based grouping.
* The unary function implementation must return for each group a tuple
consisting of the key and the lazy range of values. The binary function
implementation should continue to only return the lazy range of values.
* SortedRange should add a method called groupBy(). Invoked with no
predicate, groupBy() should do what chunkBy does, using the sorting predicate.
* aggregate() should be removed until we figure out how best to integrate.
--