pimpathon.either

EitherOps

implicit final class EitherOps[L, R] extends AnyVal

Linear Supertypes
AnyVal, NotNull, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. EitherOps
  2. AnyVal
  3. NotNull
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

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

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  2. final def ##(): Int

    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def bimap[M, S](lf: (L) ⇒ M, rf: (R) ⇒ S): Either[M, S]

  6. val either: Either[L, R]

  7. def getClass(): Class[_ <: AnyVal]

    Definition Classes
    AnyVal → Any
  8. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  9. def leftFlatMap(f: (L) ⇒ Either[L, R]): Either[L, R]

  10. def leftMap[M](f: (L) ⇒ M): Either[M, R]

  11. def leftOr(rl: (R) ⇒ L): L

  12. def rescue(pf: PartialFunction[L, R]): Either[L, R]

  13. def rescue(lr: (L) ⇒ R): R

  14. def rightFlatMap(f: (R) ⇒ Either[L, R]): Either[L, R]

  15. def rightMap[S](f: (R) ⇒ S): Either[L, S]

  16. def rightOr(lr: (L) ⇒ R): R

  17. def tap(l: (L) ⇒ Unit, r: (R) ⇒ Unit): Either[L, R]

  18. def toString(): String

    Definition Classes
    Any
  19. def toTry(implicit ev: <:<[L, Throwable]): Try[R]

  20. def valueOr(pf: PartialFunction[L, R]): Either[L, R]

  21. def valueOr(lr: (L) ⇒ R): R

Inherited from AnyVal

Inherited from NotNull

Inherited from Any

Ungrouped