rejectk multimethod
Methods
- rejectk(h:Eachable2, predicate:Any) Source: stdlib.ngs:2440
Filter hash by keys, removing matched. See filterk(). Example
{"a1": 1, "a2": 2, "b1": 10}.rejectk(/^b/) # {"a1": 1, "a2": 2}
{"a1": 1, "a2": 2, "b1": 10}.rejectk(/^b/) # {"a1": 1, "a2": 2}