functor-apply
Version 0.10.0.1 revision 0 uploaded by EdwardKmett.
Package meta
- Synopsis
- Applicative sans pure, Monad sans return, Alternative sans empty
- Description
Provides a wide array of semigroup based Functors.
When working with comonads you often have the
<*>
portion of anApplicative
, but not thepure
. This was captured in Uustalu and Vene's "Essence of Dataflow Programming" in the form of theComonadZip
class in the days beforeApplicative
, manifested here asComonadApply
.Logically:
Functor ---> Apply --------> Bind | | | | v v | Applicative ---> Monad | | | v v v Alt -> Alternative -> MonadPlus
This lets us remove many of the restrictions from various monad transformers as in many cases the binding operation or
<*>
operation does not require them.Finally, to work with these weaker structures it is beneficial to have containers that can provide stronger guarantees about their contents, so versions of Traversable and Foldable that can be folded with just a Semigroup are added.
- Author
- Edward A. Kmett
- Bug reports
- n/a
- Category
- Control, Comonads
- Copyright
- Copyright (C) 2011 Edward A. Kmett
- Homepage
- http://comonad.com/reader/
- Maintainer
- Edward A. Kmett <ekmett@gmail.com>
- Package URL
- n/a
- Stability
- provisional