ExtMap<K, V> extension
- on
-
- Map<
K, V>
- Map<
Methods
-
has(
K key) → bool -
Available on Map<
Checks if the map contains a non-null value for the givenK, V> , provided by the ExtMap extensionkey. -
string(
K key) → String -
Available on Map<
Returns the string representation of the value associated withK, V> , provided by the ExtMap extensionkey. -
whereKey(
bool test(K k)) → Map< K, V> -
Available on Map<
Returns a new map containing only the entries where the key satisfies theK, V> , provided by the ExtMap extensiontestpredicate. -
whereValue(
bool test(V v)) → Map< K, V> -
Available on Map<
Returns a new map containing only the entries where the value satisfies theK, V> , provided by the ExtMap extensiontestpredicate.