Two well-known examples of applicatives are monads and ziplists. Are there any other examples?
|
From Time flies like an applicative functor:
and
|
|||
|
|
|
I recently defined an Applicative instance for a newtype on top of The background is; I am parsing some old data, and the date format in the data is ambiguous. Each date in the data can be parsed into four possibilities, stored in the quad. I then want to validate each date in the quad to eliminate semantically invalid dates. (There are no months with 32 days, there is no month 34, there is no 5th quarter, etc.) Finally, I want to take each date in the dataset, and reduce the entire set to a quad representing which date formats are valid for the entire set. Then, I choose the best format out of those options, and assume that's what the date format of the dataset is. This entire operation is very easy to express as applicative operations on the quad structure. Here's the basic shape of the code: My new type:
Some prerequisite "pure" functions:
So once we have the quad of parsed dates (from
(This is only a Functor so far, but you could also write
It's also worth noting the symmetry between validation of a single
element, and validating each element of the set -- to validate one, you might write
The step after this is to take a set of valid parses and fold that into a final result:
So now you can go from the So anyway, this post has gotten a bit long, but the idea is that an
Applicative instance allowed me to solve my problem in about 3 lines
of code. My problem domain was repeatedly applying functions to data in a
container, which is what an Applicative functor does. There is no |
|||||
|
|
Conal Elliott writes about signal processors and how they're applicatives. Those are similar to I've been using this concept a lot in an unfinished yet cute game I made ( Code snippet/example of Applicative-style usage:
|
|||||
|
|
Formlets are an abstraction over HTML forms described in terms of composing applicatives. A formlet applicative is the result of composing a name generating applicative (to generate form elements names), a XML writer applicative (to generate HTML), and an environment applicative (to supply the submitted form values). Formlets can be extended by composing additional applicatives, for example to implement validation. Cooper, Wadler et al show in the papers that formlets cannot be represented as monads. Formlets have been implemented in Haskell, here is the package. |
|||
|
|
|
Swierstra and Duponcheel defined an efficient style of parser, this parser was pretty much the early poster child for Arrows, but it doesn't need anything from Arrow that it can't get from Applicative. However, Applicatives hadn't been coined at the time. Effectively it computes 'FIRST' sets for an LL(1) parser and uses that to do smarter branch selection. However, you can't compute these sets when you work monadically. This is perhaps not a terribly fair example, because the Swierstra/Duponcheel parser admits a blending of static and dynamic parsers, and it is only the static parser that is limited to being applicative. With observable sharing you can carry their parser design farther and also compute 'FOLLOW' sets (as long as you are careful to not build an infinite context free grammar.). This yields nice asymptotic guarantees for parsing context free grammars, which are not available to you when parsing using monadic (context sensitive) parser designs. Also interesting perhaps, is to consider the structures for which the <*> of applicative is available, but not the pure. Many comonads admit a (<*>)-like definition, which respects the structure of the comonad, but don't have a reasonable definition for 'pure'. My semigroupoids package and the myriad packages that depend upon it explore this idea further. |
|||
|
|
|
I believe arrows are applicative functors. There is certainly a WrapArrow type in Control.Applicative. |
|||
|
|
|
McBride and Paterson http://www.soi.city.ac.uk/~ross/papers/Applicative.pdf show that a monoid can be treated as an applicative functor, but in general case it is not a monad. |
|||
|
|