sealed
trait
LazyEither[+A, +B] extends AnyRef
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
def
?[X](left: ⇒ X, right: ⇒ X): X
-
def
ap[AA >: A, C](f: ⇒ LazyEither[AA, (B) ⇒ C]): LazyEither[AA, C]
-
final
def
asInstanceOf[T0]: T0
-
def
bimap[C, D](f: (⇒ A) ⇒ C, g: (⇒ B) ⇒ D): LazyEither[C, D]
-
def
clone(): AnyRef
-
def
disjunction: \/[A, B]
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
exists(f: (⇒ B) ⇒ Boolean): Boolean
-
def
finalize(): Unit
-
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[_]
-
def
getOrElse[BB >: B](default: ⇒ BB): BB
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
def
isLeft: Boolean
-
def
isRight: Boolean
-
def
left: LeftProjection[A, B] { val e: scalaz.LazyEither[A,B] }
-
def
leftMap[C](f: (⇒ A) ⇒ C): LazyEither[C, B]
-
def
map[C](f: (⇒ B) ⇒ C): LazyEither[A, C]
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
orElse[AA >: A, BB >: B](x: ⇒ LazyEither[AA, BB]): LazyEither[AA, BB]
-
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toEither: Either[A, B]
-
def
toLazyOption: LazyOption[B]
-
def
toList: List[B]
-
def
toOption: Option[B]
-
def
toStream: Stream[B]
-
def
toString(): String
-
def
traverse[G[_], AA >: A, C](f: (B) ⇒ G[C])(implicit arg0: Applicative[G]): G[LazyEither[AA, C]]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
scala.Either, but with a value by name.