https://kotlinlang.org logo
#feed
Title
# feed
m

marcinmoskala

01/21/2019, 12:57 PM
Kotlin Coroutines Cheat Sheet is ready 🙂 Enjoy 🙂 https://blog.kotlin-academy.com/kotlin-coroutines-cheat-sheet-8cf1e284dc35
❤️ 18
👍 36
K 1
r

robin

01/21/2019, 1:34 PM
Awesome! Except I'd probably replace the "Dealing with shared state" with "Don't." 😆
m

marcinmoskala

01/21/2019, 3:13 PM
😛 Sometimes you have to
o

oshai

01/21/2019, 4:39 PM
Isn't unconfined using current thread and is usually not recommended?
t

tmg

01/21/2019, 5:05 PM
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

yen

01/22/2019, 8:14 AM
Shared immutable state is fine. Unshared mutable state is fine. Shared mutable state is not fine.
4 Views