// 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. */ export function mapEffect_( self: Chunk.Chunk, f: (a: A) => Effect ): Effect> { return forEach.forEach_(self, f) } /** * Effectfully maps the elements of this chunk. * * @ets_data_first mapEffect_ */ export function mapEffect( f: (a: A) => Effect ): (self: Chunk.Chunk) => Effect> { return (self) => mapEffect_(self, f) }