If you want to use multiple contexts you can just ...
# arrow
s
If you want to use multiple contexts you can just use
IO.parMapN(EmptyCoroutineContext, firstContext.shift().follewedBy(a), secondContext.shift().followedBy(b), callback)
due to the way
CoroutineContext
works
👍 1