pub struct GrowableBitSet<T: Idx> { /* private fields */ }Expand description
A resizable bitset type with a dense representation.
T is an index type, typically a newtyped usize wrapper, but it can also
just be usize.
All operations that involve an element will panic if the element is equal to or greater than the domain size.
Implementations§
Source§impl<T: Idx> GrowableBitSet<T>
impl<T: Idx> GrowableBitSet<T>
Sourcepub fn ensure(&mut self, min_domain_size: usize)
pub fn ensure(&mut self, min_domain_size: usize)
Ensure that the set can hold at least min_domain_size elements.
pub fn new_empty() -> GrowableBitSet<T>
pub fn with_capacity(capacity: usize) -> GrowableBitSet<T>
pub fn insert_range(&mut self, elems: Range<T>)
pub fn clear(&mut self)
pub fn count(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn contains(&self, elem: T) -> bool
pub fn contains_any(&self, elems: Range<T>) -> bool
pub fn iter(&self) -> BitIter<'_, T> ⓘ
pub fn len(&self) -> usize
Sourcepub fn union<Rhs>(&mut self, other: &Rhs) -> boolwhere
Self: BitRelations<Rhs>,
pub fn union<Rhs>(&mut self, other: &Rhs) -> boolwhere
Self: BitRelations<Rhs>,
Sets self = self | other and returns true if self changed
(i.e., if new bits were added).
Sourcepub fn subtract<Rhs>(&mut self, other: &Rhs) -> boolwhere
Self: BitRelations<Rhs>,
pub fn subtract<Rhs>(&mut self, other: &Rhs) -> boolwhere
Self: BitRelations<Rhs>,
Sets self = self - other and returns true if self changed.
(i.e., if any bits were removed).
Sourcepub fn intersect<Rhs>(&mut self, other: &Rhs) -> boolwhere
Self: BitRelations<Rhs>,
pub fn intersect<Rhs>(&mut self, other: &Rhs) -> boolwhere
Self: BitRelations<Rhs>,
Sets self = self & other and return true if self changed.
(i.e., if any bits were removed).
Trait Implementations§
Source§impl<T: Idx> BitRelations<GrowableBitSet<T>> for GrowableBitSet<T>
impl<T: Idx> BitRelations<GrowableBitSet<T>> for GrowableBitSet<T>
Source§impl<T: Clone + Idx> Clone for GrowableBitSet<T>
impl<T: Clone + Idx> Clone for GrowableBitSet<T>
Source§fn clone(&self) -> GrowableBitSet<T>
fn clone(&self) -> GrowableBitSet<T>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<T: Idx> Default for GrowableBitSet<T>
impl<T: Idx> Default for GrowableBitSet<T>
Source§impl<T: Idx> From<DenseBitSet<T>> for GrowableBitSet<T>
impl<T: Idx> From<DenseBitSet<T>> for GrowableBitSet<T>
Source§fn from(bit_set: DenseBitSet<T>) -> Self
fn from(bit_set: DenseBitSet<T>) -> Self
Source§impl<T: Idx> From<GrowableBitSet<T>> for DenseBitSet<T>
impl<T: Idx> From<GrowableBitSet<T>> for DenseBitSet<T>
Source§fn from(bit_set: GrowableBitSet<T>) -> Self
fn from(bit_set: GrowableBitSet<T>) -> Self
Source§impl<T: PartialEq + Idx> PartialEq for GrowableBitSet<T>
impl<T: PartialEq + Idx> PartialEq for GrowableBitSet<T>
Source§fn eq(&self, other: &GrowableBitSet<T>) -> bool
fn eq(&self, other: &GrowableBitSet<T>) -> bool
self and other values to be equal, and is used by ==.impl<T: PartialEq + Idx> StructuralPartialEq for GrowableBitSet<T>
Auto Trait Implementations§
impl<T> Freeze for GrowableBitSet<T>
impl<T> RefUnwindSafe for GrowableBitSet<T>where
T: RefUnwindSafe,
impl<T> Send for GrowableBitSet<T>where
T: Send,
impl<T> Sync for GrowableBitSet<T>where
T: Sync,
impl<T> Unpin for GrowableBitSet<T>where
T: Unpin,
impl<T> UnsafeUnpin for GrowableBitSet<T>
impl<T> UnwindSafe for GrowableBitSet<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes