Applicative

trait Applicative[F[_]] extends Functor[F]
Authors

Kevin Lee

Since

2019-03-16

Companion
object
trait Functor[F]
class Object
trait Matchable
class Any
trait Monad[M]

Type members

Classlikes

trait ApplicativeLaw extends FunctorLaw

Inherited classlikes

trait FunctorLaw
Inherited from
Functor

Value members

Abstract methods

def ap[A, B](fa: => F[A])(fab: => F[A => B]): F[B]
def pure[A](a: => A): F[A]

Concrete methods

override def map[A, B](fa: F[A])(f: A => B): F[B]
Definition Classes

Inherited methods

Inherited from
Functor
def lift[A, B](f: A => B): F[A] => F[B]
Inherited from
Functor