naive solution is `map.filterValues { it != null }...
# getting-started
d
naive solution is
map.filterValues { it != null } as Map<String, String>
but it's an unchecked cast, so i'm wondering if there's something better