MapTransformExtensions<K, V> extension
- on
-
- Map<
K, V>
- Map<
Methods
-
filterKeys(
bool test(K key)) → Map< K, V> -
Available on Map<
Keeps only entries with keys satisfyingK, V> , provided by the MapTransformExtensions extensiontest. -
filterValues(
bool test(V value)) → Map< K, V> -
Available on Map<
Keeps only entries with values satisfyingK, V> , provided by the MapTransformExtensions extensiontest. -
getBoolOrNull(
Object? key) → bool? -
Available on Map<
K, V> , provided by the MapTransformExtensions extension -
getDoubleOrNull(
Object? key) → double? -
Available on Map<
K, V> , provided by the MapTransformExtensions extension -
getIntOrNull(
Object? key) → int? -
Available on Map<
K, V> , provided by the MapTransformExtensions extension -
getString(
Object? key) → String? -
Available on Map<
K, V> , provided by the MapTransformExtensions extension -
mapKeys<
K2> (K2 transform(K key, V value)) → Map< K2, V> -
Available on Map<
Returns a new map with transformed keys.K, V> , provided by the MapTransformExtensions extension -
mapValues<
V2> (V2 transform(K key, V value)) → Map< K, V2> -
Available on Map<
Returns a new map with transformed values.K, V> , provided by the MapTransformExtensions extension