Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in monads

Can you define `Comonads` based on `Monads`?

How does ArrowLoop work? Also, mfix?

haskell monads arrows

Constructing efficient monad instances on `Set` (and other containers with constraints) using the continuation monad

Why can Haskell exceptions only be caught inside the IO monad?

Why there needs to be a $ in calls like "runSomeMonad $ do ..."?

Biapplicative and Bimonad?

haskell monads

Can a `ST`-like monad be executed purely (without the `ST` library)?

map versus mapM behavior

map monads haskell

Is jQuery a monad

Monad in non-programming terms [duplicate]

when to use CPS vs codensity vs reflection without remorse in Haskell

Configuration data in Scala -- should I use the Reader monad?

Seeking constructive criticism on monad implementation

haskell monads idioms

How can I parse the IO String in Haskell?

string parsing haskell io monads

How can non-determinism be modeled with a List monad?

IO happens out of order when using getLine and putStr

haskell user-input monads

Monad join function

haskell monads

Evil use of Maybe monad and extension methods in C#?

c# extension-methods monads

Why does application of `sequence` on List of Lists lead to computation of its Cartesian Product?

What are the alternative of monads to use IO in pure functional programming?