mapKtx<K, V> extension
- on
-
- Map<
K, V>
- Map<
Methods
-
mapToList<
R> (R transform(K, V)) → List< R> -
Available on Map<
Returns a list containing the results of applying the givenK, V> , provided by the mapKtx extensiontransform
function to each entry in the original map. -
mapToListTo<
R> (List< R> destination, R transform(K, V)) → List<R> -
Available on Map<
Applies the givenK, V> , provided by the mapKtx extensiontransform
function to each entry of the original map and appends the results to the givendestination
.