https://kotlinlang.org logo
#coroutines
Title
# coroutines
s

Seri

09/20/2019, 9:28 PM
Is there a
*.also {}
function that takes a suspending block of code?
o

octylFractal

09/20/2019, 9:29 PM
Due to its inline status, if the outer block is suspend, it is as well
👍 2
s

Seri

09/20/2019, 9:30 PM
Ah, neat!
g

groostav

09/22/2019, 8:45 PM
This is true for pretty much everything in the standard library,
map
,
filter
,
apply
, etc.
5 Views