// ets_tracing: off import type * as T from "../../../../Effect/index.js" import type * as M from "../../../../Managed/index.js" import * as SK from "../../Sink/index.js" import type * as C from "../core.js" import * as RunManaged from "./runManaged.js" /** * Like `Stream#forEach`, but returns a `Managed` so the finalization order * can be controlled. */ export function runForEachManaged_( self: C.Stream, f: (a: A) => T.Effect ): M.Managed { return RunManaged.runManaged_(self, SK.forEach(f)) } /** * Like `Stream#forEach`, but returns a `Managed` so the finalization order * can be controlled. * * @ets_data_first runForEachManaged_ */ export function runForEachManaged(f: (a: A) => T.Effect) { return (self: C.Stream) => runForEachManaged_(self, f) }