-
Notifications
You must be signed in to change notification settings - Fork 0
reject
Subhajit Sahu edited this page Dec 22, 2022
·
14 revisions
Discard ientries which pass a test.
function reject(x, ft)
// x: ientries
// ft: test function (v, k, x)
const ientries = require('extra-ientries');
var x = [["a", 1], ["b", 2], ["c", 3], ["d", 4], ["e", 5]];
[...ientries.reject(x, v => v % 2 === 1)];
// → [ [ "b", 2 ], [ "d", 4 ] ]
[...ientries.reject(x, v => v % 2 === 0)];
// → [ [ "a", 1 ], [ "c", 3 ], [ "e", 5 ] ]
- 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