UNPKG

@effect-ts/system

Version:

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

34 lines (30 loc) 1.03 kB
// 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_<R, E, A, S>( self: C.Stream<R, E, A>, s: S, cont: Predicate<S>, f: (s: S, a: A) => S ): T.Effect<R, E, S> { 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<A, S>(s: S, cont: Predicate<S>, f: (s: S, a: A) => S) { return <R, E>(self: C.Stream<R, E, A>) => runReduceWhile_(self, s, cont, f) }