Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in applicative

Is Applicative IO implemented based on functions from Monad IO?

haskell monads applicative

How to compose function to applicatives with scalaz

Foldable vs Traversable

Can I write a higher order type for a -> b -> *?

ApplicativeDo language extension with `Parsing` applicative still looking for Monad instance

haskell ghc applicative

Haskell: Flaw in the description of applicative functor laws in the hackage Control.Applicative article?: it says Applicative determines Functor

Haskell - Evaluation of (+) <$> (+3) <*> (*100) $ 5

haskell functor applicative

Does * in (<*>) have a special meaning?

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

haskell applicative

applicative functor: <*> and partial application, how it works

parsing haskell applicative

How is "a monoid on applicative functors" different than "a monoid in the category of endofunctors"?

Examples of Haskell Applicative Transformers

Applicative laws for alternative class formulations

haskell applicative

What are the applicative functor laws in terms of pure and liftA2?

haskell applicative

How to construct an Applicative instance with constraints (similarly to constructing Monad instances using ContT)

instance Alternative ZipList in Haskell?

Haskell: some and many [duplicate]

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

Examples of "undoable" applicative functors?