Documentation

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
For more information, see Function type signatures.

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!


Introducing InfluxDB 3.0

The new core of InfluxDB built with Rust and Apache Arrow. Available today in InfluxDB Cloud Dedicated.

Learn more

State of the InfluxDB Cloud Serverless documentation

The new documentation for InfluxDB Cloud Serverless is a work in progress. We are adding new information and content almost daily. Thank you for your patience!

If there is specific information you’re looking for, please submit a documentation issue.