Crate atomic_array[][src]

Defines several array types in which elements may be updated atomically. Intended to provide atomic array types similar to those found in java.util.concurrent.atomic in Java.

Structs

AtomicBoolArray

A bool array in which elements may be updated atomically.

AtomicIsizeArray

A isize array in which elements may be updated atomically.

AtomicOptionRefArray

An array of references in which elements may be updated and retrieved atomically.

AtomicRefArray

An array of non-optional references in which elements may be updated and retrieved atomically.

AtomicUsizeArray

A usize array in which elements may be updated atomically.