but regarding the returns: ``` suspend fun dostuf...
# coroutines
r
but regarding the returns:
Copy code
suspend fun dostuff() :Unit {
   ...stuff
    other()
}
suspend fun other() :Unit {...}
vs:
Copy code
suspend fun dostuff() :Unit {
   ...stuff
    return other()
}
suspend fun other() :Unit {...}
Is this documented somewhere? that the latter is faster