@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
53 lines (42 loc) • 1.09 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.indexWhereFrom = indexWhereFrom;
exports.indexWhereFrom_ = indexWhereFrom_;
var _definition = /*#__PURE__*/require("../definition.js");
/**
* Returns the first index for which the given predicate is satisfied after or at some given index.
*/
function indexWhereFrom_(self, from, f) {
const iterator = self.arrayLikeIterator();
let next;
let i = 0;
while ((next = iterator.next()) && !next.done) {
const array = next.value;
const len = array.length;
if (i + len - 1 >= from) {
let j = 0;
while (j < len) {
const a = array[j];
if (i >= from && f(a)) {
return i;
}
j++;
i++;
}
} else {
i += len;
}
}
return -1;
}
/**
* Returns the first index for which the given predicate is satisfied after or at some given index.
*
* @ets_data_first indexWhereFrom_
*/
function indexWhereFrom(from, f) {
return self => indexWhereFrom_(self, from, f);
}
//# sourceMappingURL=indexWhereFrom.js.map