Methods
without
ΒΆ
without(e:
Eachable2
, without_k:
Any
, without_v:
Any
)
Filter out specific key-value pair
Source:
stdlib.ngs:1810
e
Source
without_k
The key to filter out
without_v
The value to filter out
Example
{'a': 1, 'b': 2, 'c': 3}.without('a', 1).without('b', 22) # {'b': 2, 'c': 3}