Expand description
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ยง
- Atomic
Bool Array - A
bool
array in which elements may be updated atomically. - Atomic
Isize Array - A
isize
array in which elements may be updated atomically. - Atomic
Option RefArray - An array of references in which elements may be updated and retrieved atomically.
- Atomic
RefArray - An array of non-optional references in which elements may be updated and retrieved atomically.
- Atomic
Usize Array - A
usize
array in which elements may be updated atomically.