What's the best way to select a set of entries fro...
# announcements
v
What's the best way to select a set of entries from a map? I'm currently using
Copy code
listOf("a", "b", "c", "d").map {
    amap[it]
}.filterNotNull().map {
    dosomething(it)
    dosomethingelse(it)
}