Applicative
Other
Lift a Monoid into F, combining the inner values using the provided Monoid:
combineis provided by semiApplicative.getSemigroup.emptyisF.of(M.empty)
Signature
declare function getMonoid<F extends TypeLambda>(F: Applicative<F>): <A, R, O, E>(M: Monoid<A>) => Monoid<Kind<F, R, O, E, A>>Type Class
Applicative interface
Added in v0.24.0
Source
Signature
interface Applicative<F extends TypeLambda> extends SemiApplicative<F>, Product<F> {}