Trait

scalaz.syntax

ApplicativeSyntax

Related Doc: package syntax

Permalink

trait ApplicativeSyntax[F[_]] extends ApplySyntax[F] with ApplicativeDivisibleSyntax[F]

Source
ApplicativeSyntax.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ApplicativeSyntax
  2. ApplicativeDivisibleSyntax
  3. ApplySyntax
  4. ApplyDivideSyntax
  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
  2. trait LiftV[A, B] extends Ops[(A) ⇒ B]

    Permalink
    Definition Classes
    FunctorSyntax

Abstract Value Members

  1. abstract def F: Applicative[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
  5. implicit def ToApplicativeDivisibleOps[A](v: F[A]): ApplicativeDivisibleOps[F, A]

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

    Permalink
  7. implicit def ToApplyDivideOps[A](v: F[A]): ApplyDivideOps[F, A]

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

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

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

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

    Permalink
    Definition Classes
    FunctorSyntax
  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
  30. def pure[A](a: ⇒ A)(implicit F: Applicative[F]): F[A]

    Permalink

    Alias for point

  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

Inherited from ApplicativeDivisibleSyntax[F]

Inherited from ApplySyntax[F]

Inherited from ApplyDivideSyntax[F]

Inherited from FunctorSyntax[F]

Inherited from InvariantFunctorSyntax[F]

Inherited from AnyRef

Inherited from Any

Ungrouped