@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
40 lines (34 loc) • 909 B
JavaScript
import { concreteId } from "../definition.mjs";
/**
* Folds over the elements in this chunk from the left.
* Stops the fold early when the condition is not fulfilled.
*/
export function reduceWhile_(self, s, pred, f) {
const iterator = self.arrayLikeIterator();
let next;
let s1 = s;
let cont = true;
while (cont && (next = iterator.next()) && !next.done) {
const array = next.value;
const len = array.length;
let i = 0;
while (cont && i < len) {
const a = array[i];
s1 = f(s1, a);
cont = pred(s1);
i++;
}
next = iterator.next();
}
return s1;
}
/**
* Folds over the elements in this chunk from the left.
* Stops the fold early when the condition is not fulfilled.
*
* @ets_data_first reduceWhile_
*/
export function reduceWhile(s, pred, f) {
return self => reduceWhile_(self, s, pred, f);
}
//# sourceMappingURL=reduceWhile.mjs.map