Without a Haskell -> (monad replace?) Operator, I can do this in scalaz:
val m3 = for {
_ <- m1
r <- m2
} yield r
Is there such an operator in Scalaz (6)? Once here, are there any helper operations like flatten / join, etc.? Where are they defined?
source
share