Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in monads

Example of using scalaz Monad

scala monads scalaz

Map and Reduce Monad for Clojure... What about a Juxt Monad?

map clojure monads reduce

Monads from all angles - Mathematical, diagramatic and programmatical

Do Notation in OCaml

ocaml monads do-notation

Is this a reasonable view of Haskell IO?

haskell monads

More idiomatic (monadic?) way to express this Scala

scala monads

Scala polymorphic function for filtering an input List of Either

Elegant way to write ordered comparison on multiple properties

What counts as a side-effect? Why isn't memory allocation a side-effect?

How to map (Either String (a -> b)) to (Either String [(a -> b)])

haskell monads either

Haskell: do notation and return in Monads

haskell monads

What type of math is this: a -> b -> c

math haskell types monads

How to write a haskell function without IO in type sig by hiding 'state' changes

Can somebody walk me through this Haskell function (State monad related)?

haskell state monads

why can't a function take monadic value and return another monadic value?

Why does haskell evaluate a in a >> b?

How do I use map over a list with do notation - ie avoid type `IO ()' with type `[IO ()]'?

haskell monads io-monad

Common practice for higher-order-polymorphism in scala

Monadic impurity and Haskell's purity. How they are combined?

Must I implement Applicative and Functor to implement a Monad