There was an error while loading. Please reload this page.
A MonadicValue2 represents a Value with two type parameters (e.g. an Xor or Ior opposed to a Maybe or FutureW ) that is also a monad.
In cyclops-react it has the following methods
Xor.primary(10) .flatMap(i-> i==10 ? Xor.secondary("oops!): Xor.primary(i*2)); //Xor.secondary["oops"]
Ior<ST,PT>, Xor<ST,PT>