sealed abstract class LazyEither[A, B] extends AnyRef
- Alphabetic
- By Inheritance
- LazyEither
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def ?[X](left: => X, right: => X): X
Catamorphism of the constructor chosen.
- def ap[C](f: => LazyEither[A, (B) => C]): LazyEither[A, C]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def bimap[C, D](f: (=> A) => C, g: (=> B) => D): LazyEither[C, D]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def exists(f: (=> B) => Boolean): Boolean
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def flatMap[AA >: A, C](f: (=> B) => LazyEither[AA, C]): LazyEither[AA, C]
- def fold[X](left: (=> A) => X, right: (=> B) => X): X
- def foldRight[Z](z: => Z)(f: (B, => Z) => Z): Z
- def forall(f: (=> B) => Boolean): Boolean
- def foreach(f: (=> B) => Unit): Unit
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getOrElse[BB >: B](default: => BB): BB
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isLeft: Boolean
- def isRight: Boolean
- def left: LeftProjection[A, B]
- def leftMap[C](f: (=> A) => C): LazyEither[C, B]
Run the given function on the left value.
- def map[C](f: (=> B) => C): LazyEither[A, C]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def orElse(x: => LazyEither[A, B]): LazyEither[A, B]
- def swap: LazyEither[B, A]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toDisjunction: \/[A, B]
- def toEither: Either[A, B]
- def toIList[BB >: B]: IList[BB]
- def toLazyOption: LazyOption[B]
- def toList: List[B]
- def toMaybe[BB >: B]: Maybe[BB]
- def toOption: Option[B]
- def toStream: Stream[B]
- def toString(): String
- Definition Classes
- AnyRef → Any
- def traverse[G[_], C](f: (B) => G[C])(implicit arg0: Applicative[G]): G[LazyEither[A, C]]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()