MapValue<S, T> extension

on

Properties

entries Iterable<MapEntry<S, T>>

Available on Value<Map<S, T>>, provided by the MapValue extension

no setter
isEmpty bool

Available on Value<Map<S, T>>, provided by the MapValue extension

no setter
isNotEmpty bool

Available on Value<Map<S, T>>, provided by the MapValue extension

no setter
keys Iterable<S>

Available on Value<Map<S, T>>, provided by the MapValue extension

no setter
length int

Available on Value<Map<S, T>>, provided by the MapValue extension

no setter
values Iterable<T>

Available on Value<Map<S, T>>, provided by the MapValue extension

no setter

Methods

cast<RK, RV>() Map<RK, RV>

Available on Value<Map<S, T>>, provided by the MapValue extension

containsKey(S key) bool

Available on Value<Map<S, T>>, provided by the MapValue extension

containsValue(S value) bool

Available on Value<Map<S, T>>, provided by the MapValue extension

forEach(void action(S key, T value)) → void

Available on Value<Map<S, T>>, provided by the MapValue extension

map<K2, V2>(MapEntry<K2, V2> convert(S key, T value)) Map<K2, V2>

Available on Value<Map<S, T>>, provided by the MapValue extension

Operators

operator [](S key) → T?

Available on Value<Map<S, T>>, provided by the MapValue extension