I'm new to Haskell, and I'm reading about functors and applicative functors. Ok, I understand functors and how I can use them, but I don't understand why applicative functors are useful and how I can use them in Haskell. Can you explain to me with a simple example why I need applicative functors?
|
|
Applicative functors are a construction that provides the midpoint between functors and monads, and are therefore more widespread than monads, while more useful than functors. Normally you can just map a function over a functor. Applicative functors allow you to take a "normal" function (taking non-functorial arguments) use it to operate on several values that are in functor contexts. As a corollary, this gives you effectful programming without monads. A nice, self-contained explanation fraught with examples can be found here. You can also read a practical parsing example developed by Brian O'Sullivan, which requires no prior knowledge. |
|||
|
|
|
Applicative functors are useful when you need sequencing of actions, but don't need to name any intermediate results. They are thus weaker than monads, but stronger than functors (they do not have an explicit bind operator, but they do allow running arbitrary functions inside the functor). When are they useful? A common example is parsing, where you need to run a number of actions that read parts of a data structure in order, then glue all the results together. This is like a general form of function composition:
where you can think of
I like to think of them as overloaded 'whitespace'. Or, that regular Haskell functions are in the identity applicative functor. |
||||
|
|
|
Conor McBride and Ross Paterson's Functional Pearl on the style has several good examples. It's also responsible for popularizing the style in the first place. They use the term "idiom" for "applicative functor", but other than that it's pretty understandable. |
|||
|
|
|
One good example: applicative parsing. See [real world haskell] ch16 http://book.realworldhaskell.org/read/using-parsec.html#id652517 This is the parser code with do-notation:
Using functor make it much shorter:
'lifting' can hide the underlying details of some repeating code. then you can just use fewer words to tell the exact & precise story. |
|||||||||||
|
|
There is a section in "Learn you a Haskell" that gives an excellent explanation of the whys and hows of applicative functors. |
|||
|
|
|
It is only a link I can give, but here is a nice description of Applicative Functors with an examples. Cheers Hartmut |
||||
|
|
|
It is hard to come up with examples where you need applicative functors. I can understand why an intermediate Haskell programmer would ask them self that question since most introductory texts present instances derived from Monads using Applicative Functors only as a convenient interface. The key insight, as mentioned both here and in most introductions to the subject, is that Applicative Functors are between Functors and Monads (even between Functors and Arrows). All Monads are Applicative Functors but not all Functors are Applicative. So necessarily, sometimes we can use applicative combinators for something that we can't use monadic combinators for. One such thing is ZipList, wich is just a wrapper around lists in order to have a different Applicative instance then the one derived from the Monad instance of list. The Applicative documentation uses the following line to give an intuitive notion of what ZipList is for:
As pointed out here, it is possible to make quirky Monad instances that almost work for ZipList. There are other Applicative Functors that are not Monads (see this SO question) and they are easy to come up with. Having an alternative Interface for Monads is nice and all, but sometimes making a Monad is inefficient, complicated, or even impossible, and that is when you need Applicative Functors. disclaimer: Making Applicative Functors might also be inefficient, complicated, and impossible, when in doubt, consult your local category theorist for correct usage of Applicative Functors. |
|||
|
|
|
I would also suggest to take a look at this In the end of the article there's an example
Which illustrates several features of applicative programming style. |
|||
|
|
