Apply

ostrat.Apply
See theApply companion object
trait Apply[F[_]] extends Functor[F]

Attributes

Companion
object
Graph
Supertypes
trait Functor[F]
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def map2[A1, A2, B](fa1: F[A1], fa2: F[A2])(f: (A1, A2) => B): F[B]

Given a value and a function in the Apply context, applies the function to the value.

Given a value and a function in the Apply context, applies the function to the value.

Attributes

Inherited and Abstract methods

def mapT[A, B](fa: F[A], f: A => B): F[B]

Takes an F of A and maps it to an F of B.

Takes an F of A and maps it to an F of B.

Attributes

Inherited from:
Functor