Applicative
Other
Type Class
Applicative interface
Added in v0.24.0
Source
Signature
interface Applicative<F extends TypeLambda> extends SemiApplicative<F>, Product<F> {}interface Applicative<F extends TypeLambda> extends SemiApplicative<F>, Product<F> {}
Lift a
MonoidintoF, combining the inner values using the providedMonoid:-
combineis provided by semiApplicative.getSemigroup. -emptyisF.of(M.empty)