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?> -
Available on MutableCell<
Returns a cell which evaluates to the value of the entry with keyMap< , provided by the MutableMapCellExtension extensionK, V> >key
. -
operator []=(
K k, V v) → void -
Available on MutableCell<
Set the value of entry with keyMap< , provided by the MutableMapCellExtension extensionK, V> >k
tov
in the Map held in this cell.