Crate atomic_array

Source
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ยง

  • A bool array in which elements may be updated atomically.
  • A isize array in which elements may be updated atomically.
  • An array of references in which elements may be updated and retrieved atomically.
  • An array of non-optional references in which elements may be updated and retrieved atomically.
  • A usize array in which elements may be updated atomically.