Class/Object

scalaz

OptionT

Related Docs: object OptionT | package scalaz

Permalink

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
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
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OptionT(run: F[Option[A]])

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

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

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

    Permalink

    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.

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

    Permalink
  11. def finalize(): Unit

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

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

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

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

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

    Permalink
  17. final def getClass(): Class[_]

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

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

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

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

    Permalink
  22. final def isInstanceOf[T0]: Boolean

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

    Permalink
  24. def mapT[G[_], B](f: (F[Option[A]]) ⇒ G[Option[B]]): OptionT[G, B]

    Permalink
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

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

    Permalink
  29. def orZero(implicit F0: Functor[F], M0: Monoid[A]): F[A]

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

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

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

    Permalink

    Since

    7.0.3

  33. def toListT(implicit F: Functor[F]): ListT[F, A]

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

    Permalink

    Since

    7.0.3

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

    Permalink
  36. def unary_~(implicit F0: Functor[F], M0: Monoid[A]): F[A]

    Permalink
  37. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. def |(default: ⇒ A)(implicit F: Functor[F]): F[A]

    Permalink

    Alias for getOrElse.

  41. def |||(a: ⇒ OptionT[F, A])(implicit F: Monad[F]): OptionT[F, A]

    Permalink

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped