Packages

final case class LazyOptionT[F[_], A](run: F[LazyOption[A]]) extends Product with Serializable

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

Instance Constructors

  1. new LazyOptionT(run: F[LazyOption[A]])

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)(implicit F: Functor[F]): F[X]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def exists(f: (⇒ A) ⇒ Boolean)(implicit F: Functor[F]): F[Boolean]
  9. def filter(f: (⇒ A) ⇒ Boolean)(implicit F: Functor[F]): LazyOptionT[F, A]
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def flatMap[B](f: (⇒ A) ⇒ LazyOptionT[F, B])(implicit M: Monad[F]): LazyOptionT[F, B]
  12. def forall(f: (⇒ A) ⇒ Boolean)(implicit F: Functor[F]): F[Boolean]
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def getOrElse(default: ⇒ A)(implicit F: Functor[F]): F[A]
  15. def isDefined(implicit F: Functor[F]): F[Boolean]
  16. def isEmpty(implicit F: Functor[F]): F[Boolean]
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def map[B](f: (⇒ A) ⇒ B)(implicit F: Functor[F]): LazyOptionT[F, B]
  19. def mapLazyOption[B](f: (LazyOption[A]) ⇒ LazyOption[B])(implicit F: Functor[F]): LazyOptionT[F, B]
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def orElse(a: ⇒ LazyOptionT[F, A])(implicit F: Monad[F]): LazyOptionT[F, A]
  24. def orZero(implicit F0: Functor[F], M0: Monoid[A]): F[A]
  25. val run: F[LazyOption[A]]
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toLazyLeft[X](right: ⇒ X)(implicit F: Functor[F]): LazyEitherT[F, A, X]
  28. def toLazyRight[X](left: ⇒ X)(implicit F: Functor[F]): LazyEitherT[F, X, A]
  29. def toLeft[X](right: ⇒ X)(implicit F: Functor[F]): EitherT[F, A, X]
  30. def toOption(implicit F: Functor[F]): OptionT[F, A]
  31. def toRight[X](left: ⇒ X)(implicit F: Functor[F]): EitherT[F, X, A]
  32. def unary_~(implicit F0: Functor[F], M0: Monoid[A]): F[A]
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  36. def |(default: ⇒ A)(implicit F: Functor[F]): F[A]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped