// 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_( self: Chunk.Chunk, n: number, f: (a: A) => Effect ): Effect { 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( n: number, f: (a: A) => Effect ): (self: Chunk.Chunk) => Effect { return (self) => mapEffectUnitParN_(self, n, f) }