/** * @tsplus static DSL getApplicativeF */ export function getApplicativeF(F: Monad): Applicative { const Apply = DSL.getApplyF(F) return HKT.instance({ ...Apply, any: F.any }) }