what's the new do-notation syntax for monads?
# arrow
i
what's the new do-notation syntax for monads?
r
The one that will be preserved in 0.12 and forward looks like this:
Copy code
either {
  val r1 = eitherValueOfInt.bind()
  val r2 = eitherValue2OfInt.bind()
  r1 + r2
}