sealed abstract class LazyOption[+A] extends Product with Serializable
Abstract Value Members
- abstract def canEqual(that: Any): Boolean
- abstract def productArity: Int
- abstract def productElement(n: Int): Any
Concrete Value Members
- final def !=(arg0: Any): Boolean
- final def ##: Int
- final def ==(arg0: Any): Boolean
- def ?[X](some: => X, none: => X): X
- def ap[B](f: => LazyOption[(A) => B]): LazyOption[B]
- final def asInstanceOf[T0]: T0
- def clone(): AnyRef
- final def eq(arg0: AnyRef): Boolean
- def equals(arg0: AnyRef): Boolean
- def exists(f: (=> A) => Boolean): Boolean
- def filter(f: (=> A) => Boolean): LazyOption[A]
- def finalize(): Unit
- def flatMap[B](f: (=> A) => LazyOption[B]): LazyOption[B]
- def fold[X](some: (=> A) => X, none: => X): X
- def foldRight[B](z: => B)(f: (A, => B) => B): B
- def forall(f: (=> A) => Boolean): Boolean
- def foreach(f: (=> A) => Unit): Unit
- final def getClass(): Class[_ <: AnyRef]
- def getOrElse[AA >: A](default: => AA): AA
- def hashCode(): Int
- def isDefined: Boolean
- def isEmpty: Boolean
- final def isInstanceOf[T0]: Boolean
- def map[B](f: (=> A) => B): LazyOption[B]
- final def ne(arg0: AnyRef): Boolean
- final def notify(): Unit
- final def notifyAll(): Unit
- def orElse[AA >: A](a: => LazyOption[AA]): LazyOption[AA]
- def productElementName(n: Int): String
- def productElementNames: Iterator[String]
- def productIterator: Iterator[Any]
- def productPrefix: String
- final def synchronized[T0](arg0: => T0): T0
- def toLazyLeft[X](right: => X): LazyEither[A, X]
- def toLazyRight[X](left: => X): LazyEither[X, A]
- def toLeft[X](right: => X): \/[A, X]
- def toList: List[A]
- def toOption: Option[A]
- def toRight[X](left: => X): \/[X, A]
- def toString(): String
- def traverse[G[_], B](f: (=> A) => G[B])(implicit arg0: Applicative[G]): G[LazyOption[B]]
- def unzip[X, Y](implicit ev: <:<[A, (X, Y)]): (LazyOption[X], LazyOption[Y])
- final def wait(): Unit
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit
- def zip[B](b: => LazyOption[B]): LazyOption[(A, B)]
- def |[AA >: A](default: => AA): AA