final case class LeftProjection[A, B](e: LazyEither[A, B]) extends AnyVal with Product with Serializable
- Source
- LazyEither.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- LeftProjection
- Serializable
- Product
- Equals
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new LeftProjection(e: LazyEither[A, B])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val e: LazyEither[A, B]
- def exists(f: (=> A) => Boolean): Boolean
- def flatMap[BB >: B, C](f: (=> A) => LazyEither[C, BB]): LazyEither[C, BB]
- def forall(f: (=> A) => Boolean): Boolean
- def foreach(f: (=> A) => Unit): Unit
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def getOrElse[AA >: A](default: => AA): AA
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[C](f: (=> A) => C): LazyEither[C, B]
- def orElse(x: => LazyEither[A, B]): LazyEither[A, B]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def toLazyList: LazyList[A]
- def toLazyOption: LazyOption[A]
- def toList: List[A]
- def toOption: Option[A]