Applicative functors are functors with some extra properties, the most important one is that it allows you to apply functions inside the functor (hence the name) to other values. An applicative functor has more structure than a functor but less than a monad.

learn more… | top users | synonyms

14
votes
1answer
143 views

Correspondence between type classes and grammar levels in the Chomsky hierarchy

My question is about the Applicative and Monad type classes on the one hand, and the context-free and context-sensitive grammar levels of the Chomsky hierarchy on the other. I've heard that there's a ...
5
votes
1answer
68 views

Ignoring arguments in Control.Applicative

I am writing an xml-conduit parser, and I prefer applicative syntax to monadic. With lots of arguments to combine, I get somewhat lost in applicative though. My current problem is given 8 arguments, ...
12
votes
2answers
359 views

Can I model a list of successes with short circuiting failure via the composition of applicative functors?

The user 'singpolyma' asked on reddit if there was some general structure underlying: data FailList a e = Done | Next a (FailList a e) | Fail e A free monad was suggested, but I wondered if this ...
11
votes
5answers
637 views

More fun with applicative functors

Earlier I asked about translating monadic code to use only the applicative functor instance of Parsec. Unfortunately I got several replies which answered the question I literally asked, but didn't ...
13
votes
3answers
426 views

Translate from monad to applicative

OK, so I know what the Applicative type class contains, and why that's useful. But I can't quite wrap my brain around how you'd use it in a non-trivial example. Consider, for example, the following ...
1
vote
1answer
107 views

Parse fixed length text with attoparsec

I need to parse fixed length fields with attoparsec but im now struggling with the compiler. Im still a newbie, the code below is the closest solution I have: > {-# LANGUAGE OverloadedStrings #-} ...
9
votes
2answers
139 views

Haskell - Is effect order deterministic in case of Applicative?

When executing the IO action defined by someFun <$> (a :: IO ()) <$> (b :: IO ()), is the execution of the a and b actions ordered? That is, can I count on that a is executed before b is? ...
1
vote
1answer
138 views

Applicative style parser for constructor with two arguments

I want to write a parser for a comma separated pair of values in angle brackets. I got it to work with the following approach: pair p1 p2 = do x1 <- p1 comma x2 <- p2 return ...
15
votes
1answer
383 views

What is Control.Applicative.Lift useful for?

I wrote about transformers in a recent blog post, and someone asked "what do people use Control.Applicative.Lift for?" I wasn't able to answer this, so I echo the question to StackOverflow - what is ...
10
votes
1answer
365 views

How much is applicative really about applying, rather than “combining”?

For an uncertainty-propagating Approximate type, I'd like to have instances for Functor through Monad. This however doesn't work because I need a vector space structure on the contained types, so it ...
8
votes
2answers
187 views

How do I implement an Applicative instance for a parser without assuming Monad?

I can't figure out how to implement an Applicative instance for this parser: newtype Parser m s a = Parser { getParser :: [s] -> m ([s], a) } without assuming Monad m. I expected to only have ...
13
votes
1answer
246 views

What’s an example of a Monad which is an Alternative but not a MonadPlus?

In his answer to the question “Distinction between typeclasses MonadPlus, Alternative, and Monoid?”, Edward Kmett says that Moreover, even if Applicative was a superclass of Monad, you’d wind up ...
6
votes
2answers
224 views

Parsec and Applicative style

can someone help me to understand how to use Applicative style for writing Parsec parsers? This is the code i have: module Main where import Control.Applicative hiding (many) import Text.Parsec ...
5
votes
3answers
154 views

Applicative style for infix operators?

Is there a way to make applicative uses of <$> and <*> look nice when dealing with infix operators? I think that ((++) <$> a <*> ((++) <$> b <*> c )) looks much ...
8
votes
4answers
263 views

Examples of Haskell Applicative Transformers

The wiki on www.haskell.org tells us the following about Applicative Transformers: So where are applicative transformers? The answer is, that we do not need special transformers for applicative ...
1
vote
1answer
210 views

How do you say <$> and <*> in english [duplicate]

Possible Duplicate: Are there pronounceable names for common Haskell operators? How do you say <$> and <*> in english. I understand that <$> is just fmap, so is it called ...
4
votes
2answers
336 views

How do applicative functors tie in with parallelizing algorithms? (Scala and Scalaz)

From Josh Suereth's "Scala in Depth": "Applicative functors provide a way to take two computations and join them together using a function. The Traversable example highlights how two collections can ...
19
votes
3answers
445 views

Is it possible to use a bracketing syntactic sugar for an applicative functor?

I've seen (in McBride and Paterson's 'Applicative programming with effects' http://strictlypositive.org/IdiomLite.pdf) the use of the lovely syntactic sugar [| f x y z |] for f <$> x ...
2
votes
3answers
171 views

applicative rewrite (Haskell)

When I don't grasp how an expression in Haskell works I often find it helps to decompose it into a more basic form. Using the following definitions sequenceA :: (Applicative f) => [f a] -> f ...
3
votes
4answers
311 views

Does Scalaz have something to accumulate in both error and success?

I started to use Scalaz 7 Validation and/or disjunction to process a list of possibly failing operation and managing their result. There is two well documented case for that kind of use cases: 1/ ...
3
votes
4answers
174 views

Is it possible to map tuple of functions over a list in Haskell?

I'm trying to do find a way to do something like this: (head, last) `someFunction` [1, 2, 3] to produce the tuple (1, 3) as output. It seems similar in theory to an applicative functor, but a ...
3
votes
4answers
141 views

How to code this configuration logic in Scala?

This is a follow-up to my previous question Suppose I use the following logic (in quasi-Java) to get a configuration parameter MyParam : String myParam = null if ((myParam = ...
3
votes
2answers
198 views

Applicative constructor for records

I want to generically create applicative constructors for haskell records in order to create a parser for the record. Consider the record: data Record = Record {i :: Int, f :: Float} the ...
9
votes
1answer
304 views

Applicative instance for a tuple with monoid and function inside

I was trying to convert a haskell example, I came across earlier, to scalaz. The original example was this: ("Answer to the ", (*)) <*> ("Ultimate Question of ", 6) <*> ("Life, the ...
19
votes
4answers
626 views

Where to find programming exercises for applicative functors?

I've been reading about applicative functors, notably in the Functional Pearl by McBride and Paterson. But I'd like to solidify my understanding by doing some exercises. I'd prefer programming ...
31
votes
1answer
768 views

Distinction between typeclasses MonadPlus, Alternative, and Monoid?

The standard-library Haskell typeclasses MonadPlus, Alternative, and Monoid each provide two methods with essentially the same semantics: An empty value: mzero, empty, or mempty. An operator a -> ...
1
vote
2answers
232 views

How to fmap the first element of a tuple in haskell

I'm trying to write a function like mapFst :: Maybe (a, String) -> Maybe ([a], String) mapFst (a,s) = (:) <$> (a,s) <*> [other fun with same type as mapFst] (a,s) Here, I'm trying to ...
7
votes
2answers
235 views

Why does importing Control.Applicative allow this bad code to type check?

I'm helping a friend learn Haskell and he recently created code like this, which type checks and produces a CPU-burning loop at runtime. I'm completely baffled by this. import Control.Monad import ...
4
votes
3answers
372 views

Explain Traverse[List] implementation in scalaz-seven

I'm trying to understand the traverseImpl implementation in scalaz-seven: def traverseImpl[F[_], A, B](l: List[A])(f: A => F[B])(implicit F: Applicative[F]) = { ...
9
votes
2answers
574 views

How to compose function to applicatives with scalaz

While learning Scalaz 6, I'm trying to write type-safe readers returning validations. Here are my new types: type ValidReader[S,X] = (S) => Validation[NonEmptyList[String],X] type MapReader[X] = ...
2
votes
2answers
1k views

Combining the elements of 2 lists

Assume we have two lists : val l1=List("a","b","c") val l2 = List("1","2","3") What I want is : List("a1", "b2", "c3") that is, adding the nth element of l1 with the nth element of l2 A way to ...
9
votes
2answers
405 views

How to show that a monad is a functor and an applicative functor?

Monads are known to be theoretically a subset of functors and specifically applicative functors, even though it's not indicated in Haskell's type system. Knowing that, given a monad and basing on ...
8
votes
4answers
231 views

Merging/Appending Justs in Haskell

I'm trying to do what must be blindingly obvious in Haskell, which is go from Just [1] and Just [2] to Just [1, 2]. However I can't find anything online as I keep finding related but unhelpful pages. ...
14
votes
1answer
249 views

Which applicative functor is used for passing shared parameters?

I think I kind of understand how applicative functors work in Haskell and I'm using them for basic datatypes (Maybe, Either...). However, I found this question with the following example: withPool ...
9
votes
4answers
224 views

Why does the Applicative instance for Maybe give Nothing when function is Nothing in <*>

I am a beginner with haskell and am reading the Learn you a haskell book. I have been trying to digest functors and applicative functors for a while now. In the applicative functors topic, the ...
5
votes
2answers
190 views

Applicative instance for State and other MTL monads?

Looking at the docs for Control.Applicative, I notice that they have instance declarations for certain monads (e.g. IO, Maybe and notably ST), but there are no instances for MTL monads such as State ...
6
votes
1answer
210 views

ghci special case for Applicative?

In ghci: λ> :t (pure 1) (pure 1) :: (Applicative f, Num a) => f a λ> show (pure 1) <interactive>:1:1: No instance for (Show (f0 a0)) arising from a use of `show' ...
3
votes
1answer
239 views

Monadic equivalent of applicative <*

After having read Anthony's response on a style-related parser question, I was trying to convince myself that writing monadic parsers can still be rather compact. So instead of reference :: Parser ...
23
votes
5answers
2k views

What are the benefits of applicative parsing over monadic parsing?

There seems to be a consensus that you should use Parsec as an applicative rather than a monad. What are the benefits of applicative parsing over monadic parsing? style performance abstraction Is ...
3
votes
1answer
352 views

how to mix applicative functors and arrows

i read on Andrew Birkett’s blog Applicative arrows for XML &&& return to pure that we could mix arrows and applicative functors. I tried it by my own but i don't have what i expect. i ...
4
votes
5answers
247 views

Put two monadic values into a pair and return it

I am playing with Parsec and I want to combine two parsers into one with the result put in a pair, and then feed it another function to operate on the parse result to write something like this: try ...
3
votes
1answer
744 views

How do I use Name as an applicative?

scala> val a = Need(20) a: scalaz.Name[Int] = scalaz.Name$$anon$2@173f990 scala> val b = Need(3) b: scalaz.Name[Int] = scalaz.Name$$anon$2@35201f scala> for(a0 <- a; b0 <- b) yield a0 ...
45
votes
4answers
1k views

Good examples of Not a Functor/Functor/Applicative/Monad?

While explaining to someone what a type class X is I struggle to find good examples of data structures which are exactly X. So, I request examples for: A type constructor which is not a Functor. A ...
8
votes
2answers
651 views

Haskell - What is Control.Applicative.Alternative good for?

I was looking at the Applicative class within Haskell libraries and stumbled across Alternative. What is this class good for? A google search did not reveal anything particularly insightful. And it ...
46
votes
12answers
3k views

What are practical uses of applicative style?

I am a Scala programmer, learning Haskell now. It's easy to find practical use cases and real world examples for OO concepts, such as decorators, strategy pattern etc. Books and interwebs are filled ...
9
votes
3answers
590 views

Applicative without a functor

I have a type Image which is basically an c-array of floats. It is easy to create functions such as map :: (Float -> Float) -> Image -> Image, or zipWith :: (Float -> Float -> Float) ...
9
votes
1answer
263 views

Is there a way to show stepwise how Clojure evaluates a function?

I'm just starting to teach myself Clojure. As part of supplementing my studies I've watched a few UC Berkley lectures by Brian Harvey on the topic of functional programming. In his second lecture on ...
2
votes
0answers
131 views

Could an Applicative Language use Postfix Notation?

I've always found postfix languages like Factor to be far more readable than prefix (Lispy languages) and infix/postfix languages (all C-style languages, if we include both operators and functions). ...
7
votes
4answers
504 views

Is Applicative IO implemented based on functions from Monad IO?

In "Learn You a Haskell for Great Good!" author claims that Applicative IO instance is implemented like this: instance Applicative IO where pure = return a <*> b = do f <- a ...
4
votes
3answers
245 views

How to map over Applicative form?

I want to map over Applicative form. The type of map-like function would be like below: mapX :: (Applicative f) => (f a -> f b) -> f [a] -> f [b] used as: result :: (Applicative f) ...

1 2