Does Kotlin have a shorthand for this: ``` fun doS...
# announcements
z
Does Kotlin have a shorthand for this:
Copy code
fun doSomething() {
	futureOfThing.thenAccept { doOther(it) }
}
fun doOther(thing: Thing) { ... }