Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in monads

How to create a Database Monad Stack in Happstack?

Is coffeescript's `?.` operator a monad?

haskell coffeescript monads

Using Maybe and Writer together

Haskell: Run two monads, keep the result of the first one

haskell monads

How exactly does `IO`'s >>= work under the hood?

haskell io monads

How does mapM work with const functions in Haskell?

Help me understand this Scala code: scalaz IO Monad and implicits

scala monads scalaz

Reader and MonadReader

haskell monads reader-monad

Why will a IO nested in other monads not execute? Is there a way to force them to?

haskell monads

Generating a unique value in Haskell do-notation

Is every method returning `this` a monad?

Combining Scala Option[Iterable[_]]

scala collections monads

Standard Operations on Option<T> monad beyond Bind and Map

How to use variable from do block assignment line in a where clause?

Recursive IO in Haskell

mapMonadTrans :: MonadTrans xT => (m a -> n b) -> xT m a -> xT n b

determining the correct type of exceptions

haskell monads

Euler 43 - is there a monad to help write this list comprehension?

Implement mapM without using sequence

haskell monads

Is Haskell's bind operator (>>=) equivalent to F#'s forward pipe operator (|>)?

haskell f# bind monads pipeline