[−][src]Struct hibitset::AtomicBitSet
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.
Implementations
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<T> BitAnd<T> for AtomicBitSet where
T: BitSetLike,
[src][+]
T: BitSetLike,
impl<'a, T> BitAnd<T> for &'a AtomicBitSet where
T: BitSetLike,
[src][+]
T: BitSetLike,
impl<T> BitOr<T> for AtomicBitSet where
T: BitSetLike,
[src][+]
T: BitSetLike,
impl<'a, T> BitOr<T> for &'a AtomicBitSet where
T: BitSetLike,
[src][+]
T: BitSetLike,
impl BitSetLike for AtomicBitSet
[src][+]
impl<T> BitXor<T> for AtomicBitSet where
T: BitSetLike,
[src][+]
T: BitSetLike,
impl<'a, T> BitXor<T> for &'a AtomicBitSet where
T: BitSetLike,
[src][+]
T: BitSetLike,
impl Debug for AtomicBitSet
[src][+]
impl Default for AtomicBitSet
[src][+]
impl DrainableBitSet for AtomicBitSet
[src][+]
impl<'a> Extend<&'a u32> for AtomicBitSet
[src][+]
impl Extend<u32> for AtomicBitSet
[src][+]
impl<'a> FromIterator<&'a u32> for AtomicBitSet
[src][+]
impl FromIterator<u32> for AtomicBitSet
[src][+]
impl IntoIterator for AtomicBitSet
[src][+]
impl<'a> IntoIterator for &'a AtomicBitSet
[src][+]
impl Not for AtomicBitSet
[src][+]
impl<'a> Not for &'a AtomicBitSet
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for AtomicBitSet
impl Send for AtomicBitSet
impl Sync for AtomicBitSet
impl Unpin for AtomicBitSet
impl UnwindSafe for AtomicBitSet
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<I> IntoIterator for I where
I: Iterator,
[src][+]
I: Iterator,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,