@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
29 lines (25 loc) • 789 B
text/typescript
// ets_tracing: off
import type { Effect } from "../../../../Effect/effect.js"
import * as forEach from "../../../../Effect/excl-forEach.js"
import type * as Chunk from "../core.js"
/**
* Effectfully maps the elements of this chunk in parallel purely for the effects.
*/
export function mapEffectUnitParN_<A, R, E, B>(
self: Chunk.Chunk<A>,
n: number,
f: (a: A) => Effect<R, E, B>
): Effect<R, E, void> {
return forEach.forEachUnitParN_(self, n, f)
}
/**
* Effectfully maps the elements of this chunk in parallel purely for the effects.
*
* @ets_data_first mapEffectUnitParN_
*/
export function mapEffectUnitParN<A, R, E, B>(
n: number,
f: (a: A) => Effect<R, E, B>
): (self: Chunk.Chunk<A>) => Effect<R, E, void> {
return (self) => mapEffectUnitParN_(self, n, f)
}