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
-
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
-
-
-
-
def
finalize(): Unit
-
-
def
fold[X](some: (⇒ A) ⇒ X, none: ⇒ X): X
-
def
foldRight[B](z: ⇒ B)(f: (A, ⇒ B) ⇒ B): B
-
-
def
foreach(f: (⇒ A) ⇒ Unit): Unit
-
final
def
getClass(): Class[_]
-
def
getOrElse[AA >: A](default: ⇒ AA): AA
-
def
hashCode(): Int
-
def
isDefined: Boolean
-
-
final
def
isInstanceOf[T0]: Boolean
-
def
map[B](f: (⇒ A) ⇒ B): LazyOption[B]
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
-
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
|[AA >: A](default: ⇒ AA): AA
scala.Option, but with a value by name.