Trait

scalaz.syntax

MonadSyntax

Related Doc: package syntax

Permalink

trait MonadSyntax[F[_]] extends ApplicativeSyntax[F] with BindSyntax[F]

Source
MonadSyntax.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MonadSyntax
  2. BindSyntax
  3. ApplicativeSyntax
  4. ApplySyntax
  5. FunctorSyntax
  6. InvariantFunctorSyntax
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait ApplicativeIdV[A] extends Ops[A]

    Permalink
    Definition Classes
    ApplicativeSyntax
  2. trait LiftV[A, B] extends Ops[(A) ⇒ B]

    Permalink
    Definition Classes
    FunctorSyntax

Abstract Value Members

  1. abstract def F: Monad[F]

    Permalink

Concrete 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. implicit def ApplicativeIdV[A](v: ⇒ A): ApplicativeIdV[A]

    Permalink
    Definition Classes
    ApplicativeSyntax
  5. implicit def ToApplicativeOps[A](v: F[A]): ApplicativeOps[F, A]

    Permalink
    Definition Classes
    ApplicativeSyntax
  6. implicit def ToApplyOps[A](v: F[A]): ApplyOps[F, A]

    Permalink
    Definition Classes
    ApplySyntax
  7. implicit def ToBindOps[A](v: F[A]): BindOps[F, A]

    Permalink
    Definition Classes
    BindSyntax
  8. implicit def ToFunctorOps[A](v: F[A]): FunctorOps[F, A]

    Permalink
    Definition Classes
    FunctorSyntax
  9. implicit def ToInvariantFunctorOps[A](v: F[A]): InvariantFunctorOps[F, A]

    Permalink
    Definition Classes
    InvariantFunctorSyntax
  10. implicit def ToLiftV[A, B](v: (A) ⇒ B): LiftV[A, B]

    Permalink
    Definition Classes
    FunctorSyntax
  11. implicit def ToMonadOps[A](v: F[A]): MonadOps[F, A]

    Permalink
  12. def ^[A, B, C](fa: ⇒ F[A], fb: ⇒ F[B])(f: (A, B) ⇒ C): F[C]

    Permalink
    Definition Classes
    ApplySyntax
  13. def ^^[A, B, C, D](fa: ⇒ F[A], fb: ⇒ F[B], fc: ⇒ F[C])(f: (A, B, C) ⇒ D): F[D]

    Permalink
    Definition Classes
    ApplySyntax
  14. def ^^^[A, B, C, D, E](fa: ⇒ F[A], fb: ⇒ F[B], fc: ⇒ F[C], fd: ⇒ F[D])(f: (A, B, C, D) ⇒ E): F[E]

    Permalink
    Definition Classes
    ApplySyntax
  15. def ^^^^[A, B, C, D, E, I](fa: ⇒ F[A], fb: ⇒ F[B], fc: ⇒ F[C], fd: ⇒ F[D], fe: ⇒ F[E])(f: (A, B, C, D, E) ⇒ I): F[I]

    Permalink
    Definition Classes
    ApplySyntax
  16. def ^^^^^[A, B, C, D, E, I, J](fa: ⇒ F[A], fb: ⇒ F[B], fc: ⇒ F[C], fd: ⇒ F[D], fe: ⇒ F[E], fi: ⇒ F[I])(f: (A, B, C, D, E, I) ⇒ J): F[J]

    Permalink
    Definition Classes
    ApplySyntax
  17. def ^^^^^^[A, B, C, D, E, I, J, K](fa: ⇒ F[A], fb: ⇒ F[B], fc: ⇒ F[C], fd: ⇒ F[D], fe: ⇒ F[E], fi: ⇒ F[I], fj: ⇒ F[J])(f: (A, B, C, D, E, I, J) ⇒ K): F[K]

    Permalink
    Definition Classes
    ApplySyntax
  18. final def asInstanceOf[T0]: T0

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

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

    Permalink
    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  22. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  24. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  29. def point[A](a: ⇒ A)(implicit F: Applicative[F]): F[A]

    Permalink
    Definition Classes
    ApplicativeSyntax
  30. def pure[A](a: ⇒ A)(implicit F: Applicative[F]): F[A]

    Permalink

    Alias for point

    Alias for point

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

    Permalink
    Definition Classes
    AnyRef
  32. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def η[A](a: ⇒ A)(implicit F: Applicative[F]): F[A]

    Permalink
    Definition Classes
    ApplicativeSyntax

Inherited from BindSyntax[F]

Inherited from ApplicativeSyntax[F]

Inherited from ApplySyntax[F]

Inherited from FunctorSyntax[F]

Inherited from InvariantFunctorSyntax[F]

Inherited from AnyRef

Inherited from Any

Ungrouped