Is there a >> monad operator in a scalar?

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?

+3
source share
1 answer

Exists >>=|with aliases >|>and *|defined in scalaz / MA.scala .

+4
source

All Articles