content/flux/v0/stdlib/dict/fromlist.md
dict.fromList() creates a dictionary from a list of records with key and value
properties.
(pairs: [{value: B, key: A}]) => [A:B] where A: Comparable
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
({{< req >}})
List of records with key and value properties.
import "dict"
d =
dict.fromList(
pairs: [{key: 1, value: "foo"}, {key: 2, value: "bar"}],
)// Returns [1: "foo", 2: "bar"]