UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

18 lines (16 loc) 456 B
import * as forEach from "../../../../Effect/excl-forEach.mjs"; /** * Effectfully maps the elements of this chunk in parallel. */ export function mapMParEffect_(self, n, f) { return forEach.forEachParN_(self, n, f); } /** * Effectfully maps the elements of this chunk in parallel. * * @ets_data_first mapMParEffect_ */ export function mapMParEffect(n, f) { return self => mapMParEffect_(self, n, f); } //# sourceMappingURL=mapEffectParN.mjs.map