// ets_tracing: off import * as T from "../../../../Effect/index.js" import type { Predicate } from "../../../../Function/index.js" import * as M from "../../../../Managed/index.js" import type * as C from "../core.js" import * as RunReduceWhileManaged from "./runReduceWhileManaged.js" /** * Reduces the elements in the stream to a value of type `S`. * Stops the fold early when the condition is not fulfilled. */ export function runReduceWhile_( self: C.Stream, s: S, cont: Predicate, f: (s: S, a: A) => S ): T.Effect { return M.use_( RunReduceWhileManaged.runReduceWhileManaged_(self, s, cont, (s, a) => f(s, a)), T.succeed ) } /** * Reduces the elements in the stream to a value of type `S`. * Stops the fold early when the condition is not fulfilled. * * @ets_data_first runReduceWhile_ */ export function runReduceWhile(s: S, cont: Predicate, f: (s: S, a: A) => S) { return (self: C.Stream) => runReduceWhile_(self, s, cont, f) }