reject multimethod
Methods
- reject(something:Eachable, predicate:Any) Source: stdlib.ngs:456
Filter something to an Arr (array) of values using predicate Parameters
something object of any type that has each(something, callback) implemented predicate Decision function to be called with each item as first argument. When predicate(item) returns true, the item will not appear in the resulting array Returns
ArrExample
(1...10).reject(F(num) num % 2 == 0) # Gives [1,3,5,7,9] (1...10).reject(X<5) # Gives [5,6,7,8,9,10], predicate called as predicate(item, 5)
- reject(i:Iter, predicate:Fun) Source: autoload/Iter.ngs:183
EXPERIMENTAL! Do not use!