1.6 KiB
1.6 KiB
title | description | menu | weight | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
dict.remove() function | `dict.remove()` removes a key value pair from a dictionary and returns an updated dictionary. |
|
101 |
dict.remove()
removes a key value pair from a dictionary and returns an updated
dictionary.
Function type signature
(dict: [A:B], key: A) => [A:B] where A: Comparable
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
Parameters
dict
({{< req >}}) Dictionary to remove the key-value pair from.
key
({{< req >}}) Key to remove from the dictionary. Must be the same type as existing keys in the dictionary.
Examples
Remove a property from a dictionary
import "dict"
d = [1: "foo", 2: "bar"]
dict.remove(dict: d, key: 1)// Returns [2: "bar"]