Skip to content

findRight

Subhajit Sahu edited this page Feb 3, 2021 · 28 revisions

Find last value passing a test.

Alternatives: find, findRight, findAll.
Similar: search, [scan], find.


function findRight(x, ft)
// x:  an iterable
// ft: test function (v, i, x)
const xiterable = require('extra-iterable');

var x = [1, 2, 3, 4, 5];
xiterable.findRight(x, v => v % 2 == 0);
// → 4            ^

xiterable.findRight(x, v => v % 2 == 1);
// → 5               ^


References

Clone this wiki locally