ReactiveMapExtension<K, V> extension

on
  • Atom<Map<K, V>>

Properties

entries Iterable<MapEntry<K, V>>
no setter
isEmpty bool
no setter
isNotEmpty bool
no setter
keys Iterable<K>
no setter
length int
no setter
values Iterable<V>
no setter

Methods

addAll(Map<K, V> other) → void
addEntries(Iterable<MapEntry<K, V>> newEntries) → void
cast<RK, RV>() Map<RK, RV>
clear() → void
containsKey(Object? key) bool
containsValue(Object? value) bool
forEach(void action(K key, V value)) → void
map<K2, V2>(MapEntry<K2, V2> convert(K key, V value)) Map<K2, V2>
putIfAbsent(K key, V ifAbsent()) → V
remove(Object? key) → V?
removeWhere(bool test(K key, V value)) → void
update(K key, V update(V value), {V ifAbsent()?}) → V
updateAll(V update(K key, V value)) → void

Operators

operator [](Object? key) → V?
operator []=(K key, V value) → void