Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in monads

What's a functor on the category of monads?

Monad Transformers in C#

Is there something like Java Stream's "peek" operation in Scala?

scala java-stream monads

How are free objects constructed?

haskell monads free-monad

Why is replicateM (length xs) m way more efficient than sequenceA (fmap (const m) xs)?

What is context in Haskell multiparameter type class

monads typeclass haskell

TraversableOnce, Future, and Option in a Scala for comprehension

scala monads future

Generating random vectors with constant stack space

LYAH - Understanding comment about "tell" when chaining Writer monads

Which Algebraic Pattern fits this type of tree?

haskell monads comonad

Adjoint functors determine monad transformers, but where's lift?

Simple interpreter written in Haskell, saves up print output until the end, instead of when it comes across a print statement

haskell io interpreter monads

How to build a Haskell list inside a monad lazily?

haskell monads

How do I do a monadic bind to an async function?

c# async-await bind monads

Interpreting a list of free monads vs. interpreting a free monad of a list

scala monads scalaz

(How) Can you curry compose monadic functions?

Can GHC derive Functor and Applicative instances for a monad transformer?

Printing the free monad

Why is FunctionalDependency needed for defining MonadReader?

Haskell - Automatic Monad instance