Struct atomic_array::AtomicBoolArray [−][src]
pub struct AtomicBoolArray { /* fields omitted */ }A bool array in which elements may be updated atomically.
Methods
impl AtomicBoolArray[src]
impl AtomicBoolArraypub fn new(len: usize) -> Self[src]
pub fn new(len: usize) -> SelfConstructs a new array with the specified length. All values will be initialized to their default.
pub fn new_with(
len: usize,
f: impl Fn(usize) -> bool
) -> Self[src]
pub fn new_with(
len: usize,
f: impl Fn(usize) -> bool
) -> SelfConstructs a new array with the specified length. Uses the given function to construct each value.
pub fn len(&self) -> usize[src]
pub fn len(&self) -> usizeReturns the number of elements in the array.
pub fn is_empty(&self) -> bool[src]
pub fn is_empty(&self) -> boolReturns true if the array has a length of 0.
pub fn load(&self, index: usize) -> bool[src]
pub fn load(&self, index: usize) -> boolLoads and returns the value at the given position.
Panics if index is out of bounds.
pub fn store(&self, index: usize, value: bool)[src]
pub fn store(&self, index: usize, value: bool)Stores the value at the given position.
Panics if index is out bounds.
pub fn swap(&self, index: usize, value: bool) -> bool[src]
pub fn swap(&self, index: usize, value: bool) -> boolSwaps the value at the given position, returning the previous value.
Panics if index is out of bounds.
Auto Trait Implementations
impl Send for AtomicBoolArray
impl Send for AtomicBoolArrayimpl Sync for AtomicBoolArray
impl Sync for AtomicBoolArray