-
Notifications
You must be signed in to change notification settings - Fork 0
filter
Subhajit Sahu edited this page Jun 17, 2020
·
17 revisions
Keeps entries which pass a test. 🏃 📼 📦 🌔 📒
Alternatives: filter, filter$.
Similar: map, reduce, filter, filterAt, reject, rejectAt.
entries.filter(x, ft);
// x: entries
// ft: test function (v, k, x)
const entries = require('extra-entries');
var x = [['a', 1], ['b', 2], ['c', 3], ['d', 4], ['e', 5]];
[...entries.filter(x, v => v % 2 === 1)];
// [ [ 'a', 1 ], [ 'c', 3 ], [ 'e', 5 ] ]
[...entries.filter(x, v => v % 2 === 0)];
// [ [ 'b', 2 ], [ 'd', 4 ] ]
- Data.List.filter: Haskell
- Array.prototype.filter: MDN web docs
- array_filter: PHP
- _.remove: lodash
- _.without: lodash
- _.compact: lodash
- _.pull: lodash
- _.pullAll: lodash
- _.pullAllBy: lodash
- _.pullAllWith: lodash
- Array.filter: sugarjs
- Array.exclude: sugarjs
- Array.compact: sugarjs
- array-tools.where: @75lb