scalaz

OptionT

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

OptionT monad transformer.

Self Type
OptionT[F, A]
Source
OptionT.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OptionT
  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 OptionT(run: F[Option[A]])

Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. def ap[B](f: ⇒ OptionT[F, (A) ⇒ B])(implicit F: Monad[F]): OptionT[F, B]

  7. def app[B](f: ⇒ OptionT[F, (A) ⇒ B])(implicit F: Apply[F]): OptionT[F, B]

    Apply a function in the environment of both options, containing both Fs.

    Apply a function in the environment of both options, containing both Fs. It is not compatible with Monad#bind.

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

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

    Definition Classes
    AnyRef
  11. def exists(f: (A) ⇒ Boolean)(implicit F: Functor[F]): F[Boolean]

  12. def filter(f: (A) ⇒ Boolean)(implicit F: Functor[F]): OptionT[F, A]

  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def flatMap[B](f: (A) ⇒ OptionT[F, B])(implicit F: Monad[F]): OptionT[F, B]

  15. def flatMapF[B](f: (A) ⇒ F[B])(implicit F: Monad[F]): OptionT[F, B]

  16. def fold[X](some: (A) ⇒ X, none: ⇒ X)(implicit F: Functor[F]): F[X]

  17. def foldRight[Z](z: ⇒ Z)(f: (A, ⇒ Z) ⇒ Z)(implicit F: Foldable[F]): Z

  18. def forall(f: (A) ⇒ Boolean)(implicit F: Functor[F]): F[Boolean]

  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def getOrElse(default: ⇒ A)(implicit F: Functor[F]): F[A]

  21. def getOrElseF(default: ⇒ F[A])(implicit F: Monad[F]): F[A]

  22. def isDefined(implicit F: Functor[F]): F[Boolean]

  23. def isEmpty(implicit F: Functor[F]): F[Boolean]

  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. def map[B](f: (A) ⇒ B)(implicit F: Functor[F]): OptionT[F, B]

  26. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  29. def orElse(a: ⇒ OptionT[F, A])(implicit F: Monad[F]): OptionT[F, A]

  30. val run: F[Option[A]]

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

    Definition Classes
    AnyRef
  32. def toLeft[B](b: ⇒ B)(implicit F: Functor[F]): EitherT[F, A, B]

    Since

    7.0.3

  33. def toRight[E](e: ⇒ E)(implicit F: Functor[F]): EitherT[F, E, A]

    Since

    7.0.3

  34. def traverse[G[_], B](f: (A) ⇒ G[B])(implicit F: Traverse[F], G: Applicative[G]): G[OptionT[F, B]]

  35. final def wait(): Unit

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. 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