| Version 8 (modified by simonmar@…, 7 years ago) |
|---|
This should be a list of minor (mostly) backwards compatable changes to the standard libraries. Proposed new libraries should go on NewLibraryCandidates
- signatures of when and unless generalized
- move 'join' and 'ap' into the Monad class
- remove exports of functions from libraries that are also exported by the prelude (to make overriding prelude functions easier)
- lookup,elemIndex,find,findIndex to be generalized to return result in monad instead of forced to be a maybe
- remove catch from the Prelude
new simple functions
replicateM, replicateM_, repeatM, repeatM_
-- | the generalization of readIO. readIO can be deprecated if wished if this is included. readM :: (Read a, Monad m) => String -> m a readM = ...
