Packages

sealed abstract class LazyOption[+A] extends Product with Serializable

scala.Option, but with a value by name.

Source
LazyOption.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LazyOption
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean
    Definition Classes
    Equals
  2. abstract def productArity: Int
    Definition Classes
    Product
  3. abstract def productElement(n: Int): Any
    Definition Classes
    Product

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def ?[X](some: ⇒ X, none: ⇒ X): X
  5. def ap[B](f: ⇒ LazyOption[(A) ⇒ B]): LazyOption[B]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def exists(f: (⇒ A) ⇒ Boolean): Boolean
  11. def filter(f: (⇒ A) ⇒ Boolean): LazyOption[A]
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def flatMap[B](f: (⇒ A) ⇒ LazyOption[B]): LazyOption[B]
  14. def fold[X](some: (⇒ A) ⇒ X, none: ⇒ X): X
  15. def foldRight[B](z: ⇒ B)(f: (A, ⇒ B) ⇒ B): B
  16. def forall(f: (⇒ A) ⇒ Boolean): Boolean
  17. def foreach(f: (⇒ A) ⇒ Unit): Unit
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def getOrElse[AA >: A](default: ⇒ AA): AA
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def isDefined: Boolean
  22. def isEmpty: Boolean
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def map[B](f: (⇒ A) ⇒ B): LazyOption[B]
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def orElse[AA >: A](a: ⇒ LazyOption[AA]): LazyOption[AA]
  29. def productIterator: Iterator[Any]
    Definition Classes
    Product
  30. def productPrefix: String
    Definition Classes
    Product
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toLazyLeft[X](right: ⇒ X): LazyEither[A, X]
  33. def toLazyRight[X](left: ⇒ X): LazyEither[X, A]
  34. def toLeft[X](right: ⇒ X): \/[A, X]
  35. def toList: List[A]
  36. def toOption: Option[A]
  37. def toRight[X](left: ⇒ X): \/[X, A]
  38. def toString(): String
    Definition Classes
    AnyRef → Any
  39. def traverse[G[_], B](f: (⇒ A) ⇒ G[B])(implicit arg0: Applicative[G]): G[LazyOption[B]]
  40. def unzip[X, Y](implicit ev: <:<[A, (X, Y)]): (LazyOption[X], LazyOption[Y])
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  44. def zip[B](b: ⇒ LazyOption[B]): LazyOption[(A, B)]
  45. def |[AA >: A](default: ⇒ AA): AA

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped