Nick Williams
suspend fun main() { flow{ delay(100); emit("beef") } .onStart { emit("jerky") } .onStart { emit("turkey") } .conflate() .collect { println(it) } }
suspend fun main() { flow{ delay(100); emit("beef") } .onStart { emit("jerky") } .onStart { emit("turkey") } .debounce(1) .collect { println(it) } }
onStart { emit(...) }
debounce(1)
A modern programming language that makes developers happier.