Packages

class EitherOps[L, R] extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EitherOps
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new EitherOps(e: Either[L, R])

Value Members

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