- 
                Notifications
    You must be signed in to change notification settings 
- Fork 5
scanUntil
        Subhajit Sahu edited this page May 3, 2023 
        ·
        12 revisions
      
    Scan from left, until a test passes.
Alternatives: scanWhile, scanWhileRight, scanUntil, scanUntilRight.
Similar: search, scan, find.
function scanUntil(x, ft)
// x:  an array
// ft: test function (v, i, x)const xarray = require('extra-array');
var x = [1, 1, 2, 2, 3, 3, 4, 4];
xarray.scanUntil(x, v => v % 2 === 0);
// → 2         ^
xarray.scanUntil(x, v => v % 3 === 0);
// → 4               ^
xarray.scanUntil(x, v => v % 6 === 0);
// → 8                          ^