Applicatives compose, monads don't.
What does the above statement mean? And when is one preferable to other?
What does the above statement mean? And when is one preferable to other? |
|||
| show 1 more comment |
|
If we compare the types
we get a clue to what separates the two concepts. That
which uses the result of some effect to decide between two computations (e.g. launching missiles and signing an armistice), whereas
which uses the value of The monadic version relies essentially on the extra power of
we get this far, but now our layers are all jumbled up. We have an
to permute the The weaker ‘double-apply’ is much easier to define
because there is no interference between the layers. Correspondingly, it's good to recognize when you really need the extra power of Note, by the way, that although composing monads is difficult, it might be more than you need. The type |
|||||||||
|
|
If you have applicatives On the other hand, if you have monads One example can be the type
And that generalizes to any applicative:
But there is no sensible definition of
|
|||||
|
Monads do compose, but the result might not be a monad.
In contrast, the composition of two applicatives is necessarily an applicative.
I suspect the intention of the original statement was that "Applicativeness composes, while monadness doesn't." Rephrased, " |
|||||||||
|
Composing monads, http://web.cecs.pdx.edu/~mpj/pubs/RR-1004.pdf |
|||||||||||||||
|
|
The distributive law solution l : MN -> NM is enough to guarantee monadicity of NM. To see this you need a unit and a mult. i'll focus on the mult (the unit is unit_N unitM)
This does not guarantee that MN is a monad. The crucial observation however, comes into play when you have distributive law solutions
thus, LM, LN and MN are monads. The question arises as to whether LMN is a monad (either by (MN)L -> L(MN) or by N(LM) -> (LM)N We have enough structure to make these maps. However, as Eugenia Cheng observes, we need a hexagonal condition (that amounts to a presentation of the Yang-Baxter equation) to guarantee monadicity of either construction. In fact, with the hexagonal condition, the two different monads coincide. |
|||||
|
Applicatives are actually a whole family ofMonads, namely one for each "shape" of structure possible.ZipListisn't aMonad, butZipLists of a fixed length are.Readeris a convenient special (or is it general?) case where the size of the "structure" is fixed as the cardinality of the environment type. – C. A. McCann Aug 12 '11 at 16:09Readermonad up to isomorphism. Once you fix the shape of a container, it effectively encodes a function from positions, like a memo trie. Peter Hancock calls such functors "Naperian", as they obey laws of logarithms. – pigworker Aug 12 '11 at 17:56