MutableMapCellExtension<K, V> extension
Provides variants which return MutableCell of the methods provided by MapCellExtension.
- on
-
- MutableCell<
Map< K, V> >
- MutableCell<
Operators
-
operator [](
ValueCell key) → MutableCell< V?> -
Returns a cell which evaluates to the value of the entry with key
key
. -
operator []=(
K k, V v) → void -
Set the value of entry with key
k
tov
in the Map held in this cell.