Package-level declarations

Types

Link copied to clipboard
class AtomicMutableList<E>(elements: E) : MutableList<E>

A multiplatform, thread-safe MutableList, implemented using AtomicReference and PersistentList.

Link copied to clipboard
class AtomicMutableMap<K, V>(pairs: Pair<K, V>) : MutableMap<K, V>

A multiplatform, thread-safe MutableMap, implemented using AtomicReference and PersistentMap.