In other world: "Is it enough to guarantee that on...
# coroutines
j
In other world: "Is it enough to guarantee that only there is no concurrent access to a variable? Can the thread cache cause trouble if the variable is accessed from different thread, event if the access is not concurrent?
e
Accesses from the same coroutine are always safe even if coroutine jumps threads on suspension.
👍 2
Technically that is what “not concurrent” means.
j
Cool thank you.