Join Slack
Powered by
what's the best way to transform a map `Map<Str...
# getting-started
d
danneu
01/28/2017, 8:24 PM
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?>
Open in Slack
Previous
Next