HashMap.fromIterables factory constructor
HashMap.fromIterables(Creates a HashMap associating the given keys
to values
.
This constructor iterates over keys
and values
and maps each element of keys
to the corresponding element of values
.
If keys
contains the same object multiple times, the last occurrence overwrites the previous value.
It is an error if the two Iterables don't have the same length.
Source
factory HashMap.fromIterables(Iterable<K> keys, Iterable<V> values) { HashMap<K, V> map = new HashMap<K, V>(); Maps._fillMapWithIterables(map, keys, values); return map; }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-collection/HashMap/HashMap.fromIterables.html