Apply

trait Apply[F[_]] extends Functor[F]
Companion:
object
trait Functor[F]
class Object
trait Matchable
class Any
trait Applicative[F]
trait Monad[F]
trait Selective[F]
trait FlatMap[F]

Value members

Abstract methods

def ap[A1, A2](ff: F[A1 => A2])(fa: F[A1]): F[A2]

Concrete methods

def product[A1, A2](fa: F[A1], fb: F[A2]): F[(A1, A2)]

Inherited methods

def map[A1, A2](fa: F[A1])(f: A1 => A2): F[A2]
Inherited from:
Functor