// ets_tracing: off import type * as T from "../../../../Effect/index.js" import * as SK from "../../Sink/index.js" import type * as C from "../core.js" import * as Run from "./run.js" /** * Consumes elements of the stream, passing them to the specified callback, * and terminating consumption when the callback returns `false`. */ export function runForEachWhile_( self: C.Stream, f: (a: A) => T.Effect ): T.Effect { return Run.run_(self, SK.forEachWhile(f)) } /** * Consumes elements of the stream, passing them to the specified callback, * and terminating consumption when the callback returns `false`. * * @ets_data_first runForEachWhile_ */ export function runForEachWhile(f: (a: A) => T.Effect) { return (self: C.Stream) => runForEachWhile_(self, f) }