import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Folds over the elements in this chunk from the left. * Stops the fold early when the condition is not fulfilled. * @tsplus static Chunk.Aspects reduceWhile * @tsplus pipeable Chunk reduceWhile * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/reduceWhile" */ export declare function reduceWhile(s: S, pred: Predicate, f: (s: S, a: A) => S): (self: Chunk) => S; //# sourceMappingURL=reduceWhile.d.ts.map