1.0 KiB
1.0 KiB
title | description | aliases | menu | weight | introduced | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
dict.fromList() function | The `dict.fromList()` function creates a dictionary from a list of records with `key` and `value` properties. |
|
|
301 | 0.97.0 |
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
({{< req >}}) 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