-
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, fn);
// x: entries
// fn: test function (v, k, x)
const map = require('extra-map');
var x = new Map([['a', 1], ['b', 2], ['c', 3], ['d', 4], ['e', 5]]);
map.filter(x, v => v % 2 === 1);
// Map(3) { 'a' => 1, 'c' => 3, 'e' => 5 }
map.filter(x, v => v % 2 === 0);
// Map(2) { '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