// ets_tracing: off import * as CK from "../../../../Collections/Immutable/Chunk/index.js" import type * as O from "../../../../Option/index.js" import * as CH from "../../Channel/index.js" import * as C from "../core.js" /** * Transforms all elements of the stream for as long as the specified partial function is defined. */ export function collectWhile_( self: C.Stream, pf: (a: A) => O.Option ): C.Stream { const loop: CH.Channel< R, E, CK.Chunk, unknown, E, CK.Chunk, any > = CH.readWith( (_in) => { const mapped = CK.collectWhile_(_in, pf) if (CK.size(mapped) === CK.size(_in)) { return CH.zipRight_(CH.write(mapped), loop) } else { return CH.write(mapped) } }, CH.fail, CH.succeed ) return new C.Stream(self.channel[">>>"](loop)) } /** * Transforms all elements of the stream for as long as the specified partial function is defined. * * @ets_data_first collectWhile_ */ export function collectWhile(pf: (a: A) => O.Option) { return (self: C.Stream) => collectWhile_(self, pf) }