trait Applicative[M[_]] extends DeprecatedApplicative[M]

Source
Applicative.scala
Linear Supertypes
DeprecatedApplicative[M], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Applicative
  2. DeprecatedApplicative
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def apply[A, B](mf: M[(A) => B], ma: M[A]): M[B]
  2. abstract def map[A, B](m: M[A], f: (A) => B): M[B]
  3. abstract def pure[A](f: => A): M[A]

Deprecated Value Members

  1. def pure[A](value: A): M[A]
    Definition Classes
    DeprecatedApplicative
    Annotations
    @deprecated
    Deprecated

    (Since version 2.7.0) Use pure with f:=>A parameter