MapExtensions<K, V> extension
Methods
-
filterEntries(bool predicate(K k, V v))
→ Map<K, V>
-
-
getByPath(JsonPath path)
→ dynamic
-
-
join([String entrySeparator = "; ", String keyValueSeparator = "="])
→ String
-
-
mapEntries<VV>(VV mapper(K k, V v))
→ Iterable<VV>
-
-
mapKeys<KK>(KK mapper(K k, V v))
→ Map<KK, V>
-
-
mapValues<VV>(VV mapper(K k, V v))
→ Map<K, VV>
-
-
removeByPath(JsonPath path)
→ dynamic
-
-
setByPath(JsonPath path, dynamic value)
→ void
-
-
toDebugString()
→ String
-
-
toKeyed()
→ Keyed<K, V>
-
-
whereEntries(bool predicate(K k, V v))
→ Map<K, V>
-
see filterEntries
-
whereKeys(bool predicate(K v))
→ Map<K, V>
-
-
whereValues(bool predicate(V v))
→ Map<K, V>
-