Methods

withoutΒΆ

without(e:Eachable2, without_k:Any)

Filter out specific key
Source: stdlib.ngs:1800

e

Source

without_k

The key to filter out

Example

{'a': 1, 'b': 2, 'c': 3}.without('a')  # {'b': 2, 'c': 3}