Packages

c

scalaz.LazyEither

LeftProjection

final case class LeftProjection[A, B](e: LazyEither[A, B]) extends AnyVal with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LeftProjection
  2. Serializable
  3. Product
  4. Equals
  5. AnyVal
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new LeftProjection(e: LazyEither[A, B])

Value Members

  1. val e: LazyEither[A, B]
  2. def exists(f: (=> A) => Boolean): Boolean
  3. def flatMap[BB >: B, C](f: (=> A) => LazyEither[C, BB]): LazyEither[C, BB]
  4. def forall(f: (=> A) => Boolean): Boolean
  5. def foreach(f: (=> A) => Unit): Unit
  6. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  7. def getOrElse[AA >: A](default: => AA): AA
  8. def map[C](f: (=> A) => C): LazyEither[C, B]
  9. def orElse(x: => LazyEither[A, B]): LazyEither[A, B]
  10. def productElementNames: Iterator[String]
    Definition Classes
    Product
  11. def toLazyList: LazyList[A]
  12. def toLazyOption: LazyOption[A]
  13. def toList: List[A]
  14. def toOption: Option[A]