ExtensionMap<K, V> extension
Methods
-
addAllT(Map<K, V> iterable, {bool isAdd = true})
→ Map<K, V>
-
addAll map 并返回 新map
-
entriesMap<E>(E builder(MapEntry<K, V>))
→ Iterable<E>
-
entries.map()
-
entriesMapKV<E>(E builder(K, V))
→ Iterable<E>
-
entries.map()
-
entriesMapKVToList<E>(E builder(K, V))
→ List<E>
-
entries.map().toList()
-
entriesMapToList<E>(E builder(MapEntry<K, V>))
→ List<E>
-
entries.map().toList()
-
keysList({bool growable = true})
→ List<K>
-
-
updateAllT(V update(K key, V value), {bool isUpdate = true})
→ Map<K, V>
-
update map 并返回 新map
-
updateT(K key, V update(V value), {V ifAbsent()?, bool isUpdate = true})
→ Map<K, V>
-
update map 并返回 新map
-
valuesList({bool growable = true})
→ List<V>
-