Whoa, I just discovered something really good for ...
# coroutines
l
Whoa, I just discovered something really good for libraries that want to prohibit suspension in inline lambdas! Just use
crossinline
modifier to the inline lambda that must not have suspension points (usually useful to make sure some operation happening after the lambda is run before yielding the thread can happen)
👍 5