Carrascado
(1..3).asFlow().onEach { number -> println("$number") }.collect()
(1..3).asFlow().collect { number -> println("$number") }
onEach
collect
araqnid
launchIn
flosch
.launchIn(CoroutineScope)
Coroutinescope.launch { ... }
jean
onStart
catch
you have the possibility to call other operators like onStart or catch when using onEach
A modern programming language that makes developers happier.