rogeralsing
07/21/2017, 7:52 AMsuspend fun dostuff() :Unit {
...stuff
other()
}
suspend fun other() :Unit {...}
vs:
suspend fun dostuff() :Unit {
...stuff
return other()
}
suspend fun other() :Unit {...}
Is this documented somewhere? that the latter is faster