@hackage functor-apply0.10.1
Haskell 98: Applicative sans pure, Monad sans return, Alternative sans empty
Deprecated
Dependencies (6)
- base >=4 && <4.4
- bifunctors >=0.1 && <0.2
- comonad >=0.9.0 && <1.0
- containers >=0.4.0 && <0.5
- semigroups >=0.3.2 && <0.4
- transformers >=0.2.0 && <0.3 Show all…
Dependents (6)
@hackage/tagged-transformer, @hackage/acme-everything, @hackage/comonad-transformers, @hackage/adjunctions, @hackage/comonad, @hackage/streams
Provides a wide array of semigroup based Functors.
When working with comonads you often have the <*> portion of an Applicative, but
not the pure. This was captured in Uustalu and Vene's "Essence of Dataflow Programming"
in the form of the ComonadZip class in the days before Applicative. Apply provides a weaker invariant, but for the comonads used for data flow programming (found in the streams package), this invariant is preserved.
Logically:
Functor -> Apply -------> Bind | | | v v v Alt Applicative ---> Monad | | | v v v Plus -> Alternative -> MonadPlus
Functor | v Foldable ----> Foldable1 | | v v Traversable -> Traversable1
Bifunctor -----> Biapply
|
v
Bifoldable ----> Bifoldable1
| |
v v
Bitraversable -> Bitraversable1This 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.