haskell-issues
haskell-issues copied to clipboard
An unofficial issue tracker for all things Haskell-related
Completing the rectangle au - ala; under - ?.
The previous discussion (I think it was [this one](https://mail.haskell.org/pipermail/libraries/2014-April/022695.html)) ended in nothing, even tho most people seemed to be in favor of adding them.
For instance, splitting a string like `"foo12bar34"` into `[12,34]` should be a one-liner.
These rectangles deserve to be completed: ``` haskell execState :: State s () -> (s -> s) modify :: (s -> s) -> State s () execStateT :: StateT s...
Currently this leads to linking errors.
This could help with finding the packages that should be deprecated.
I am currently making a typeclass that relates `Alternative`s and `Alt`s that are differing by their `empty` for laziness and profit. `Maybe` belongs to `Identity`, but `Identity` doesn't have an...