Is there a way to have concurrentHashMaps in Kotli...
# multiplatform
a
Is there a way to have concurrentHashMaps in Kotlin Native? I tried wrapping MutableMap in AtomicReference but that doesn't look like a good solution to me as there are cases in which it might not work
d
That's as good as it gets sadly. (Unless you want to write it in C)
There are some libraries that hide this from you.
m