[GHC] #12868: Add groupOn function to Data.List
GHC
ghc-devs at haskell.org
Wed Nov 23 09:04:04 UTC 2016
#12868: Add groupOn function to Data.List
-------------------------------------+-------------------------------------
Reporter: wizzup | Owner:
Type: feature request | Status: new
Priority: low | Milestone:
Component: libraries/base | Version:
Resolution: | Keywords:
Operating System: Unknown/Multiple | Architecture:
| Unknown/Multiple
Type of failure: None/Unknown | Test Case:
Blocked By: | Blocking:
Related Tickets: | Differential Rev(s):
Wiki Page: |
-------------------------------------+-------------------------------------
Comment (by wizzup):
On a side note; the `Data.List.Split` use `On` with different meaning.
There should not be inconsistency in `Data.List` and `Data.List.Split`.
{{{
> splitOn "x" "axbxc"
["a","b","c"]
> splitOn "x" "axbxcx"
["a","b","c",""]
> splitWhen (<0) [1,3,-4,5,7,-9,0,2]
[[1,3],[5,7],[0,2]]
}}}
--
Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/12868#comment:3>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
More information about the ghc-tickets
mailing list