-
Notifications
You must be signed in to change notification settings - Fork 1
filter$
Subhajit Sahu edited this page Jun 12, 2020
·
16 revisions
Keeps entries which pass a test. 🏃 [:vhs:] 📦 🌔 📒
Alternatives: filter, filter$.
Similar: map, reduce, filter, filterAt, reject, rejectAt.
map.filter$(x, fn, [ths]);
// x: an map (updated)
// fn: test function (v, k, x)
// ths: this argument
// --> 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 }
x;
// Map(3) { 'a' => 1, 'c' => 3, 'e' => 5 }
var x = new Map([['a', 1], ['b', 2], ['c', 3], ['d', 4], ['e', 5]]);
map.filter$(x, v => v % 2 === 0);
// Map(2) { 'b' => 2, 'd' => 4 }