Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in monad-transformers

EitherT: Call function returning Either only if a certain condition is true (otherwise return right)

Result of monad inside monad transformer

Using returned EitherT in haskell program

State monads: Transitioning from one state type to another

How do I actually execute a StateT monad along with IO?

Why ContT doesn't deal with the inner monad?

Stateful loop with different types of breaks

Why does my MaybeT (State <type>) () ignore state changes?

Haskell Best Practise: Early termination in Haskeline

Haskell monads and a fail that doesn't require a string

Repeated calling a Haskell monad

Abstracting monad composition as a transformer

Recursive liftIO

How to create a Database Monad Stack in Happstack?

Using Maybe and Writer together

How to deal with an IO (Maybe (IO (Maybe t))) type?

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

How to I convert between monad stacks with transformers in scalaz 7

How to create a limited version of the IO monad