what's the best way to transform a map `Map<Str...
# getting-started
d
what's the best way to transform a map
Map<String, String?>
to
Map<String, String>
(remove pairs where value is null)?
map.filterValues { it != null }
still has signature
Map<String, String?>