Returns true if this is a Right, false otherwise.
true
false
Example:
import arrow.core.Iorfun main() { Ior.Left("tulip").isRight // Result: false Ior.Right("venus fly-trap").isRight // Result: true Ior.Both("venus", "fly-trap").isRight // Result: false}