Applicative

sbt.util.Applicative
See theApplicative companion object
trait Applicative[F[_]] extends Apply[F]

Attributes

Companion
object
Graph
Supertypes
trait Apply[F]
trait Functor[F]
class Object
trait Matchable
class Any
Known subtypes
trait Monad[F]
trait Selective[F]

Members list

Value members

Abstract methods

def pure[A1](x: () => A1): F[A1]

Concrete methods

override def map[A1, A2](fa: F[A1])(f: A1 => A2): F[A2]

Attributes

Definition Classes

Inherited methods

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

Attributes

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

Attributes

Inherited from:
Apply