UNPKG

@effect-ts/system

Version:

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

27 lines (23 loc) 713 B
// 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 purely for the effects. */ export function mapEffectUnit_<A, R, E, B>( self: Chunk.Chunk<A>, f: (a: A) => Effect<R, E, B> ): Effect<R, E, void> { return forEach.forEachUnit_(self, f) } /** * Effectfully maps the elements of this chunk purely for the effects. * * @ets_data_first mapEffectUnit_ */ export function mapEffectUnit<A, R, E, B>( f: (a: A) => Effect<R, E, B> ): (self: Chunk.Chunk<A>) => Effect<R, E, void> { return (self) => mapEffectUnit_(self, f) }