LeftProjection

final case
class LeftProjection[A, B](e: LazyEither[A, B])
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

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 getOrElse[AA >: A](default: => AA): AA
def map[C](f: (=> A) => C): LazyEither[C, B]
def orElse(x: => LazyEither[A, B]): LazyEither[A, B]
def toList: List[A]
def toOption: Option[A]
def toStream: Stream[A]

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product