dict.remove() function
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
Parameters
dict
(Required) Dictionary to remove the key-value pair from.
key
(Required) 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"]
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for Flux and this documentation. To find support, use the following resources:
Customers with an annual or support contract can contact InfluxData Support.