MapCellExtension<K, V> extension
Provides Map methods directly on cells holding Maps
s.
Properties
-
entries
→ ValueCell<
Iterable< MapEntry< >K, V> > -
Available on ValueCell<
Returns a cell which evaluates to Map.entries applied on the value in this cell.Map< , provided by the MapCellExtension extensionK, V> >no setter -
isEmpty
→ ValueCell<
bool> -
Available on ValueCell<
Returns a cell which evaluates to Map.isEmpty applied on the value in this cellMap< , provided by the MapCellExtension extensionK, V> >no setter -
isNotEmpty
→ ValueCell<
bool> -
Available on ValueCell<
Returns a cell which evaluates to Map.isNotEmpty applied on the value in this cellMap< , provided by the MapCellExtension extensionK, V> >no setter -
keys
→ ValueCell<
Iterable< K> > -
Available on ValueCell<
Returns a cell which evaluates to Map.keys applied on the value in this cell.Map< , provided by the MapCellExtension extensionK, V> >no setter -
length
→ ValueCell<
int> -
Available on ValueCell<
Returns a cell which evaluates to Map.length applied on the value in this cellMap< , provided by the MapCellExtension extensionK, V> >no setter -
values
→ ValueCell<
Iterable< V> > -
Available on ValueCell<
Returns a cell which evaluates to Map.values applied on the value in this cell.Map< , provided by the MapCellExtension extensionK, V> >no setter
Methods
-
containsKey(
ValueCell key) → ValueCell< bool> -
Available on ValueCell<
Returns a cell which evaluates to true if the Map held in this cell contains the keyMap< , provided by the MapCellExtension extensionK, V> >key
. -
containsValue(
ValueCell val) → ValueCell< bool> -
Available on ValueCell<
Returns a cell which evaluates to true if the Map held in this cell contains the valueMap< , provided by the MapCellExtension extensionK, V> >val
.
Operators
-
operator [](
ValueCell key) → ValueCell< V?> -
Available on ValueCell<
Returns a cell which evaluates to the value of the entry with keyMap< , provided by the MapCellExtension extensionK, V> >key
.