Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in monads

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

Obtaining a Bool out of [Maybe Bool] which is guaranteed to contain at least one Just

When do [do x] and [do return x] evaluate differently?

haskell monads

Option monad in scala

scala monads scala-option

How to convert data from IO(String) to String in haskell [duplicate]

Are monads expressions, or are there statements in Haskell?

haskell monads

Dealing with Maybe Bool values

haskell monads maybe

How do use putStrLn for tracing (Haskell)

How to properly use monadic expressions in Haskell without getting parse errors?

haskell monads

How to flip an Option<Try<Foo>> to a Try<Option<Foo>>

java java-8 monads vavr