@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) • 509 B
JavaScript
import * as forEach from "../../../../Effect/excl-forEach.mjs";
/**
* Effectfully maps the elements of this chunk in parallel purely for the effects.
*/
export function mapEffectUnitPar_(self, f) {
return forEach.forEachUnitPar_(self, f);
}
/**
* Effectfully maps the elements of this chunk in parallel purely for the effects.
*
* @ets_data_first mapEffectUnitPar_
*/
export function mapEffectUnitPar(f) {
return self => mapEffectUnitPar_(self, f);
}
//# sourceMappingURL=mapEffectUnitParN.mjs.map