Struct hibitset::AtomicBitSet
[−]
[src]
pub struct AtomicBitSet { /* fields omitted */ }
This is similar to a BitSet
but allows setting of value
without unique ownership of the structure
An AtomicBitSet
has the ability to add an item to the set
without unique ownership (given that the set is big enough).
Removing elements does require unique ownership as an effect
of the hierarchy it holds. Worst case multiple writers set the
same bit twice (but only is told they set it).
It is possible to atomically remove from the set, but not at the same time as atomically adding. This is because there is no way to know if layer 1-3 would be left in a consistent state if they are being cleared and set at the same time.
AtromicBitSet
resolves this race by disallowing atomic
clearing of bits.
Methods
impl AtomicBitSet
[src]
pub fn new() -> AtomicBitSet
[src]
Creates an empty AtomicBitSet
.
pub fn add_atomic(&self, id: u32) -> bool
[src]
Adds id
to the AtomicBitSet
. Returns true
if the value was
already in the set.
Because we cannot safely extend an AtomicBitSet without unique ownership this will panic if the Index is out of range.
pub fn add(&mut self, id: u32) -> bool
[src]
Adds id
to the BitSet
. Returns true
if the value was
already in the set.
pub fn remove(&mut self, id: u32) -> bool
[src]
Removes id
from the set, returns true
if the value
was removed, and false
if the value was not set
to begin with.
pub fn contains(&self, id: u32) -> bool
[src]
Returns true
if id
is in the set.
pub fn clear(&mut self)
[src]
Clear all bits in the set
Trait Implementations
impl Debug for AtomicBitSet
[src]
impl BitSetLike for AtomicBitSet
[src]
fn layer3(&self) -> usize
[src]
Return a usize where each bit represents if any word in layer2 has been set. Read more
fn layer2(&self, i: usize) -> usize
[src]
Return the usize from the array of usizes that indicates if any bit has been set in layer1 Read more
fn layer1(&self, i: usize) -> usize
[src]
Return the usize from the array of usizes that indicates if any bit has been set in layer0 Read more
fn layer0(&self, i: usize) -> usize
[src]
Return a usize that maps to the direct 1:1 association with each index of the set Read more
fn contains(&self, i: u32) -> bool
[src]
Allows checking if set bit is contained in the bit set.
fn iter(self) -> BitIter<Self> where
Self: Sized,
[src]
Self: Sized,
Create an iterator that will scan over the keyspace
fn par_iter(self) -> BitParIter<Self> where
Self: Sized,
[src]
Self: Sized,
Create a parallel iterator that will scan over the keyspace
impl Default for AtomicBitSet
[src]
impl IntoIterator for AtomicBitSet
[src]
type Item = <BitIter<Self> as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = BitIter<Self>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter
[src]
Creates an iterator from a value. Read more
impl Not for AtomicBitSet
[src]
type Output = BitSetNot<Self>
The resulting type after applying the !
operator.
fn not(self) -> Self::Output
[src]
Performs the unary !
operation.
impl<T> BitAnd<T> for AtomicBitSet where
T: BitSetLike,
[src]
T: BitSetLike,
type Output = BitSetAnd<Self, T>
The resulting type after applying the &
operator.
fn bitand(self, rhs: T) -> Self::Output
[src]
Performs the &
operation.
impl<T> BitOr<T> for AtomicBitSet where
T: BitSetLike,
[src]
T: BitSetLike,
type Output = BitSetOr<Self, T>
The resulting type after applying the |
operator.
fn bitor(self, rhs: T) -> Self::Output
[src]
Performs the |
operation.
impl<T> BitXor<T> for AtomicBitSet where
T: BitSetLike,
[src]
T: BitSetLike,
type Output = BitSetXor<Self, T>
The resulting type after applying the ^
operator.
fn bitxor(self, rhs: T) -> Self::Output
[src]
Performs the ^
operation.
impl<'a> IntoIterator for &'a AtomicBitSet
[src]
type Item = <BitIter<Self> as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = BitIter<Self>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter
[src]
Creates an iterator from a value. Read more
impl<'a> Not for &'a AtomicBitSet
[src]
type Output = BitSetNot<Self>
The resulting type after applying the !
operator.
fn not(self) -> Self::Output
[src]
Performs the unary !
operation.
impl<'a, T> BitAnd<T> for &'a AtomicBitSet where
T: BitSetLike,
[src]
T: BitSetLike,
type Output = BitSetAnd<Self, T>
The resulting type after applying the &
operator.
fn bitand(self, rhs: T) -> Self::Output
[src]
Performs the &
operation.
impl<'a, T> BitOr<T> for &'a AtomicBitSet where
T: BitSetLike,
[src]
T: BitSetLike,
type Output = BitSetOr<Self, T>
The resulting type after applying the |
operator.
fn bitor(self, rhs: T) -> Self::Output
[src]
Performs the |
operation.
impl<'a, T> BitXor<T> for &'a AtomicBitSet where
T: BitSetLike,
[src]
T: BitSetLike,