omit
remove keys from a dict
(dict xs, list keys) -> dict
Returns a copy of xs
in which all keys
are omitted.
Returns nil
if xs
is nil
or keys
is nil
.
Throws an error if any key in keys
cannot be cast to string.
Parameters
Name | Type | Description |
---|---|---|
xs |
dict | The dict to work with |
keys |
list | The keys to omit |