dict.fromList() function
The dict.fromList()
function creates a dictionary from a list of records with
key
and value
properties.
import "dict"
dict.fromList(pairs: [{key: 1, value: "foo"},{key: 2, value: "bar"}])
Parameters
pairs
(Required) List of records, each containing key
and value
properties.
Examples
Create a dictionary from a list of records
import "dict"
// Define a new dictionary using an array of records
d = dict.fromList(pairs: [{key: 1, value: "foo"}, {key: 2, value: "bar"}])
// Return a property of the dictionary
dict.get(dict: d, key: 1, default: "")
// Returns foo
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, the following resources are available:
InfluxDB Cloud customers can contact InfluxData Support.