-
Notifications
You must be signed in to change notification settings - Fork 1
findAll
Subhajit Sahu edited this page Feb 3, 2021
·
12 revisions
Finds all values passing a test. 🏃 📼 📦 🌔 📒
Alternatives: find, findRight, findAll.
Similar: search, scan, find.
iterable.findAll(x, ft);
// x: an iterable
// ft: test function (v, i, x)
const iterable = require("extra-iterable");
var x = [1, 2, 3, 4, 5];
[...iterable.findAll(x, v => v % 2 === 1)];
// [ 1, 3, 5 ]
[...iterable.findAll(x, v => v % 2 === 0)];
// [ 2, 4 ]