is `reduce` thread safe?
# orbit-mvi
v
is
reduce
thread safe?
👌 1
please help
a
Sure what do you mean by thread safe? It runs things in atomic order I believe all running on same coroutines dispatcher
But good practice to make your states immutable
v
@agrosner If it is atomic operation then it means it can be performed atomically without interference from other threads, which makes it thread safe. Correct me if my understanding is wrong.