scalaz

LazyOption

trait LazyOption [+A] extends AnyRef

Attributes
sealed
Self Type
LazyOption[A]
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. LazyOption
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

  1. class WithFilter extends AnyRef

Abstract Value Members

  1. def fold [B] (ifSome: (⇒ A) ⇒ B, ifNone: ⇒ B): B

    Attributes
    abstract
  2. def isDefined : Boolean

    Attributes
    abstract

Concrete Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  9. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def exists (p: (⇒ A) ⇒ Boolean): Boolean

  11. def filter (f: (⇒ A) ⇒ Boolean): LazyOption[A]

  12. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def flatMap [B] (f: (⇒ A) ⇒ LazyOption[B]): LazyOption[B]

  14. def forall (p: (⇒ A) ⇒ Boolean): Boolean

  15. def force : LazyOption[A]

    Forces evaluation of the contents of this LazyOption

  16. def foreach [U] (f: (⇒ A) ⇒ U): Unit

  17. def fst [AA >: A] : FirstLazyOption[AA]

  18. def get : A

  19. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  20. def getOrElse [B >: A] (default: ⇒ B): B

    An alias for orSome

  21. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  22. def isEmpty : Boolean

  23. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  24. def lst [AA >: A] : LastLazyOption[AA]

  25. def map [B] (f: (⇒ A) ⇒ B): LazyOption[B]

  26. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  27. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  28. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  29. def orElse [B >: A] (alternative: ⇒ LazyOption[B]): LazyOption[B]

  30. def orNull [A1 >: A] (implicit ev: <:<[Null, A1]): A1

  31. def orSome [B >: A] (default: ⇒ B): B

  32. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  33. def toLeft [X] (right: ⇒ X): Product with Serializable with Either[A, X]

  34. def toOption [AA >: A] : Option[A]

  35. def toRight [X] (left: ⇒ X): Product with Serializable with Either[X, A]

  36. def toString (): String

    Definition Classes
    AnyRef → Any
  37. def wait (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  38. def wait (arg0: Long, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  39. def wait (arg0: Long): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  40. def withFilter (p: (⇒ A) ⇒ Boolean): WithFilter

Inherited from AnyRef

Inherited from Any