Applicative functor


In functional programming, an applicative functor is a structure intermediate between functors and monads, in that they allow sequencing of functorial computations but without deciding on which computation to perform on the basis of the result of a previous computation. Applicative functors are the programming equivalent of lax monoidal functors with tensorial strength in category theory.
Applicative functors were introduced in 2007 by Conor McBride and Ross Paterson in their paper Functional Pearl: applicative programming with effects.
Applicative functors first appeared as a library feature in Haskell, but have since spread to other languages as well, including Idris, Agda, OCaml, Scala and F#. Both Glasgow Haskell and Idris now offer language features designed to ease programming with applicative functors.
In Haskell, applicative functors are implemented in the Applicative type class.