Kotlin Coroutines Cheat Sheet is ready :slightly_s...
# feed
m
Kotlin Coroutines Cheat Sheet is ready 🙂 Enjoy 🙂 https://blog.kotlin-academy.com/kotlin-coroutines-cheat-sheet-8cf1e284dc35
❤️ 18
👍 36
K 1
r
Awesome! Except I'd probably replace the "Dealing with shared state" with "Don't." 😆
m
😛 Sometimes you have to
o
Isn't unconfined using current thread and is usually not recommended?
t
dealing is shared state is something for compilers and run time environments/vms. there should be no dealing with shared state in high level programming.
y
Shared immutable state is fine. Unshared mutable state is fine. Shared mutable state is not fine.