ra_ap_rustc_index::bit_set

Struct DenseBitSet

Source
pub struct DenseBitSet<T> { /* private fields */ }
Expand description

A fixed-size bitset type with a dense representation.

Note 1: Since this bitset is dense, if your domain is big, and/or relatively homogeneous (for example, with long runs of bits set or unset), then it may be preferable to instead use a MixedBitSet, or an IntervalSet. They should be more suited to sparse, or highly-compressible, domains.

Note 2: Use GrowableBitSet if you need support for resizing after creation.

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. All operations that involve two bitsets will panic if the bitsets have differing domain sizes.

Implementations§

Source§

impl<T> DenseBitSet<T>

Source

pub fn domain_size(&self) -> usize

Gets the domain size.

Source§

impl<T: Idx> DenseBitSet<T>

Source

pub fn new_empty(domain_size: usize) -> DenseBitSet<T>

Creates a new, empty bitset with a given domain_size.

Source

pub fn new_filled(domain_size: usize) -> DenseBitSet<T>

Creates a new, filled bitset with a given domain_size.

Source

pub fn clear(&mut self)

Clear all elements.

Source

pub fn count(&self) -> usize

Count the number of set bits in the set.

Source

pub fn contains(&self, elem: T) -> bool

Returns true if self contains elem.

Source

pub fn superset(&self, other: &DenseBitSet<T>) -> bool

Is self is a (non-strict) superset of other?

Source

pub fn is_empty(&self) -> bool

Is the set empty?

Source

pub fn insert(&mut self, elem: T) -> bool

Insert elem. Returns whether the set has changed.

Source

pub fn insert_range(&mut self, elems: impl RangeBounds<T>)

Source

pub fn insert_all(&mut self)

Sets all bits to true.

Source

pub fn remove(&mut self, elem: T) -> bool

Returns true if the set has changed.

Source

pub fn iter(&self) -> BitIter<'_, T>

Iterates over the indices of set bits in a sorted order.

Source

pub fn last_set_in(&self, range: impl RangeBounds<T>) -> Option<T>

Source

pub fn union<Rhs>(&mut self, other: &Rhs) -> bool
where Self: BitRelations<Rhs>,

Sets self = self | other and returns true if self changed (i.e., if new bits were added).

Source

pub fn subtract<Rhs>(&mut self, other: &Rhs) -> bool
where Self: BitRelations<Rhs>,

Sets self = self - other and returns true if self changed. (i.e., if any bits were removed).

Source

pub fn intersect<Rhs>(&mut self, other: &Rhs) -> bool
where Self: BitRelations<Rhs>,

Sets self = self & other and return true if self changed. (i.e., if any bits were removed).

Source

pub fn union_not(&mut self, other: &DenseBitSet<T>)

Sets self = self | !other.

FIXME: Incorporate this into BitRelations and fill out implementations for other bitset types, if needed.

Trait Implementations§

Source§

impl<T: Idx> BitRelations<ChunkedBitSet<T>> for DenseBitSet<T>

Source§

fn union(&mut self, other: &ChunkedBitSet<T>) -> bool

Source§

fn subtract(&mut self, _other: &ChunkedBitSet<T>) -> bool

Source§

fn intersect(&mut self, other: &ChunkedBitSet<T>) -> bool

Source§

impl<T: Idx> BitRelations<DenseBitSet<T>> for DenseBitSet<T>

Source§

fn union(&mut self, other: &DenseBitSet<T>) -> bool

Source§

fn subtract(&mut self, other: &DenseBitSet<T>) -> bool

Source§

fn intersect(&mut self, other: &DenseBitSet<T>) -> bool

Source§

impl<T> Clone for DenseBitSet<T>

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
Source§

fn clone_from(&mut self, from: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Idx> Debug for DenseBitSet<T>

Source§

fn fmt(&self, w: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: Idx> From<DenseBitSet<T>> for GrowableBitSet<T>

Source§

fn from(bit_set: DenseBitSet<T>) -> Self

Converts to this type from the input type.
Source§

impl<T: Idx> From<GrowableBitSet<T>> for DenseBitSet<T>

Source§

fn from(bit_set: GrowableBitSet<T>) -> Self

Converts to this type from the input type.
Source§

impl<T: Hash> Hash for DenseBitSet<T>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T: PartialEq> PartialEq for DenseBitSet<T>

Source§

fn eq(&self, other: &DenseBitSet<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: Idx> ToString for DenseBitSet<T>

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T: Eq> Eq for DenseBitSet<T>

Source§

impl<T> StructuralPartialEq for DenseBitSet<T>

Auto Trait Implementations§

§

impl<T> Freeze for DenseBitSet<T>

§

impl<T> RefUnwindSafe for DenseBitSet<T>
where T: RefUnwindSafe,

§

impl<T> Send for DenseBitSet<T>
where T: Send,

§

impl<T> Sync for DenseBitSet<T>
where T: Sync,

§

impl<T> Unpin for DenseBitSet<T>
where T: Unpin,

§

impl<T> UnwindSafe for DenseBitSet<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.