could go with ```fun doFoo(): Pair<Boolean, Int...
# getting-started
k
could go with
Copy code
fun doFoo(): Pair<Boolean, Int> {
    val someNumber = map.filter { someCoolTest(it) }.keys.firstOrNull()
    return (someNumber != null) to (someNumber ?: 0)
}
👍 1