EitherOps

class EitherOps[L, R](e: Either[L, R])
class Object
trait Matchable
class Any

Value members

Concrete methods

def leftMap[B](f: L => B): Either[B, R]
def rightFlatMap[B](f: R => Either[L, B]): Either[L, B]
def rightMap[B](f: R => B): Either[L, B]