scalaz

LazyOptionT

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

Source
LazyOptionT.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
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
Learn more about member selection
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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  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[java.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
  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
  22. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  23. def orElse(a: ⇒ LazyOption[A])(implicit F: Functor[F]): LazyOptionT[F, A]

  24. val run: F[LazyOption[A]]

  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def toLazyLeft[X](right: ⇒ X)(implicit F: Functor[F]): LazyEitherT[F, A, X]

  27. def toLazyRight[X](left: ⇒ X)(implicit F: Functor[F]): LazyEitherT[F, X, A]

  28. def toLeft[X](right: ⇒ X)(implicit F: Functor[F]): EitherT[F, A, X]

  29. def toOption(implicit F: Functor[F]): OptionT[F, A]

  30. def toRight[X](left: ⇒ X)(implicit F: Functor[F]): EitherT[F, X, A]

  31. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def foreach(f: (⇒ A) ⇒ Unit)(implicit e: Each[F]): Unit

    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) Each/foreach is deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped