The applicative tag has no wiki summary.
35
votes
11answers
2k 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 ...
26
votes
3answers
673 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 ...
18
votes
3answers
737 views
Proving equality of streams
I have a data type
data N a = N a [N a]
of rose trees and Applicative instance
instance Applicative N where
pure a = N a (repeat (pure a))
(N f xs) <*> (N a ys) = N (f a) (zipWith ...
14
votes
1answer
186 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 ...
12
votes
5answers
601 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 ...
9
votes
4answers
155 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 ...
9
votes
1answer
226 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 ...
8
votes
2answers
239 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
3answers
153 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. ...
8
votes
3answers
452 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) ...
8
votes
2answers
922 views
Computational cost of applicative style
I am using a small database pool in my web app. And this particular function:
withPool pool = bracket (takeConn pool) (putConn pool)
can be rewritten in applicative style:
withPool = bracket ...
7
votes
4answers
377 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
...
7
votes
3answers
225 views
Are there human-friendly names for applicative (and friends) methods?
I've been using applicative (and alternative) a fair bit lately, and one thing that has been frustrating me is my lack of knowledge of the nomenclature. As an example, I'd like to be able to say ...
7
votes
2answers
190 views
Naming of `pure` function in Control.Applicative
Why is the function for lifting a value into a functor named pure in Control.Applicative?
6
votes
1answer
78 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] = ...
6
votes
1answer
130 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'
...
6
votes
2answers
249 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 ...
6
votes
1answer
214 views
How and why is ap defined as liftM2 id in Haskell
Whilst trying to better understand Applicative, I looked at the definition of <*>, which tends to be defined as ap, which in turn is defined as:
ap :: (Monad m) => m (a -> b) ...
6
votes
4answers
739 views
Is there an equivalent in Scala to Python's more general map function?
I know that Scala's Lists have a map implementation with signature (f: (A) => B):List[B] and a foreach implementation with signature (f: (A) => Unit):Unit but I'm looking for something that ...
5
votes
2answers
83 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 ...
5
votes
6answers
437 views
How can I abstract a common Haskell recursive applicative functor pattern
While using applicative functors in Haskell I've often run into situations where I end up with repetitive code like this:
instance Arbitrary MyType where
arbitrary = MyType <$> arbitrary ...
4
votes
5answers
181 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 ...
4
votes
3answers
182 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) ...
4
votes
2answers
407 views
Functor / Applicative instances for State in Haskell
After reading (and skimming some sections of) Wadler's paper on monads, I decided to work through the paper more closely, defining functor and applicative instances for each of the monads he ...
3
votes
1answer
192 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 ...
3
votes
1answer
219 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 ...
3
votes
1answer
309 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 ...
3
votes
1answer
231 views
Haskell: some and many
What are some and many in Control.Applicative.Alternative good for? If I write something like some $ Just 42, it seems to cause infinite recursion, which seems not very useful...
2
votes
2answers
100 views
Scala : 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 ...
2
votes
0answers
52 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).
...
0
votes
1answer
133 views
Haskell Applicative and ErrorT?
Why is it that I can do the following:
import Data.Word
import Data.Binary.Get
import Control.Applicative
import Control.Monad.Error
getW1 :: ErrorT String Get Word8
getW1 = lift getWord8
f1 = (+1) ...