-
Notifications
You must be signed in to change notification settings - Fork 1
scanUntil
Subhajit Sahu edited this page Jun 15, 2020
·
11 revisions
Scans from left, until a test passes. 🏃 📼 📦 🌔 📒
Alternatives: [scanWhile], [scanWhileRight], [scanUntil], [scanUntilRight].
Similar: search, [scan], [find].
iterable.scanUntil(x, fn);
// x: an iterable
// fn: test function (v, i, x)
// --> index where test passes
const iterable = require('extra-iterable');
var x = [1, 2, 3, 2, 5];
iterable.search(x, 2);
// 1 ^
var x = [1, -2, 3, 2, 5];
iterable.search(x, 2, (a, b) => Math.abs(a) - Math.abs(b));
// 1 ^
var x = [1, -2, 3, 2, 5];
iterable.search(x, 2, null, v => Math.abs(v));
// 1 ^