ReactiveMap<K, V> extension
Extension for Reactive<Map<K, V>> providing common map utilities.
Methods
-
clear(
) → void -
Available on Reactive<
Clears all entries in the reactive map.Map< , provided by the ReactiveMap extensionK, V> > -
has(
String key) → bool -
Available on Reactive<
Returns true if the reactive map containsMap< , provided by the ReactiveMap extensionK, V> >keyand its value is not null. -
put(
K key, V value) → void -
Available on Reactive<
Inserts or updates a key-value pair in the reactive map.Map< , provided by the ReactiveMap extensionK, V> > -
remove(
K key) → void -
Available on Reactive<
Removes a key from the reactive map.Map< , provided by the ReactiveMap extensionK, V> >