grizzled.either.Implicits

RichEither

implicit class RichEither[L, R] extends AnyRef

Enriched Either class, providing map and flatMap methods that map over and Either object if its value is Right (and permit easier use of Either objects in for comprehensions).

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

Instance Constructors

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

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

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

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

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

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

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val e: Either[L, R]

  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def flatMap[R2](mapper: (R) ⇒ Either[L, R2]): Either[L, R2]

    Similar to the map() method, this method invokes the supplied partial function only if the supplied Either is a Right.

    Similar to the map() method, this method invokes the supplied partial function only if the supplied Either is a Right. Unlike map(), however, flatMap() does not automatically rewrap the result in a Right; instead, it expects the supplied partial function to return an Either.

    This method is roughly analogous to the Scala Option class's flatMap() function.

    R2

    the mapped Right type

    mapper

    Partial function taking a value of type R (i.e., what's stored in the Right side) and maps it to an Either[L, R2].

  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def map[R2](mapper: (R) ⇒ R2): Either[L, R2]

    Map an Either value only if it's a Right.

    Map an Either value only if it's a Right. If it's a Left, just return the Left unmodified.

    This method is roughly analogous to the Scala Option class's map() function.

    R2

    the mapped Right type

    mapper

    Partial function taking a value of type R (i.e., what's stored in the Right side) and maps it to a value of type R2.

  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped