Struct fixedbitset::FixedBitSet [−][src]
pub struct FixedBitSet { /* fields omitted */ }
Expand description
FixedBitSet
is a simple fixed size set of bits that each can
be enabled (1 / true) or disabled (0 / false).
The bit set has a fixed capacity in terms of enabling bits (and the
capacity can grow using the grow
method).
Derived traits depend on both the zeros and ones, so [0,1] is not equal to [0,1,0].
Implementations
Create a new FixedBitSet with a specific number of bits, all initially clear.
Create a new FixedBitSet with a specific number of bits, initialized from provided blocks.
If the blocks are not the exact size needed for the capacity they will be padded with zeros (if shorter) or truncated to the capacity (if longer).
For example:
let data = vec![4];
let bs = fixedbitset::FixedBitSet::with_capacity_and_blocks(4, data);
assert_eq!(format!("{:b}", bs), "0010");
Return the length of the FixedBitSet
in bits.
Return if the FixedBitSet
is empty.
Return true if the bit is enabled in the FixedBitSet, false otherwise.
Note: bits outside the capacity are always disabled.
Note: Also available with index syntax: bitset[bit]
.
Enable bit
, and return its previous value.
Panics if bit is out of bounds.
Toggle bit
(inverting its state).
Panics if bit is out of bounds
Copies boolean value from specified bit to the specified bit.
Panics if to is out of bounds.
Count the number of set bits in the given bit range.
Use ..
to count the whole content of the bitset.
Panics if the range extends past the end of the bitset.
Sets every bit in the given range to the given state (enabled
)
Use ..
to set the whole bitset.
Panics if the range extends past the end of the bitset.
Enables every bit in the given range.
Use ..
to make the whole bitset ones.
Panics if the range extends past the end of the bitset.
Toggles (inverts) every bit in the given range.
Use ..
to toggle the whole bitset.
Panics if the range extends past the end of the bitset.
View the bitset as a mutable slice of u32
blocks. Writing past the bitlength in the last
will cause contains
to return potentially incorrect results for bits past the bitlength.
Iterates over all enabled bits.
Iterator element is the index of the 1
bit, type usize
.
pub fn intersection<'a>(&'a self, other: &'a FixedBitSet) -> Intersection<'a>ⓘNotable traits for Intersection<'a>impl<'a> Iterator for Intersection<'a> type Item = usize;
pub fn intersection<'a>(&'a self, other: &'a FixedBitSet) -> Intersection<'a>ⓘNotable traits for Intersection<'a>impl<'a> Iterator for Intersection<'a> type Item = usize;
impl<'a> Iterator for Intersection<'a> type Item = usize;
Returns a lazy iterator over the intersection of two FixedBitSet
s
Returns a lazy iterator over the union of two FixedBitSet
s.
pub fn difference<'a>(&'a self, other: &'a FixedBitSet) -> Difference<'a>ⓘNotable traits for Difference<'a>impl<'a> Iterator for Difference<'a> type Item = usize;
pub fn difference<'a>(&'a self, other: &'a FixedBitSet) -> Difference<'a>ⓘNotable traits for Difference<'a>impl<'a> Iterator for Difference<'a> type Item = usize;
impl<'a> Iterator for Difference<'a> type Item = usize;
Returns a lazy iterator over the difference of two FixedBitSet
s. The difference of a
and b
is the elements of a
which are not in b
.
pub fn symmetric_difference<'a>(
&'a self,
other: &'a FixedBitSet
) -> SymmetricDifference<'a>ⓘNotable traits for SymmetricDifference<'a>impl<'a> Iterator for SymmetricDifference<'a> type Item = usize;
pub fn symmetric_difference<'a>(
&'a self,
other: &'a FixedBitSet
) -> SymmetricDifference<'a>ⓘNotable traits for SymmetricDifference<'a>impl<'a> Iterator for SymmetricDifference<'a> type Item = usize;
impl<'a> Iterator for SymmetricDifference<'a> type Item = usize;
Returns a lazy iterator over the symmetric difference of two FixedBitSet
s.
The symmetric difference of a
and b
is the elements of one, but not both, sets.
In-place union of two FixedBitSet
s.
On calling this method, self
’s capacity may be increased to match other
’s.
In-place intersection of two FixedBitSet
s.
On calling this method, self
’s capacity will remain the same as before.
In-place difference of two FixedBitSet
s.
On calling this method, self
’s capacity will remain the same as before.
In-place symmetric difference of two FixedBitSet
s.
On calling this method, self
’s capacity may be increased to match other
’s.
Returns true
if self
has no elements in common with other
. This
is equivalent to checking for an empty intersection.
Returns true
if the set is a subset of another, i.e. other
contains
at least all the values in self
.
Returns true
if the set is a superset of another, i.e. self
contains
at least all the values in other
.
Trait Implementations
type Output = FixedBitSet
type Output = FixedBitSet
The resulting type after applying the &
operator.
Performs the &
operation. Read more
Performs the &=
operation. Read more
Performs the &=
operation. Read more
type Output = FixedBitSet
type Output = FixedBitSet
The resulting type after applying the |
operator.
Performs the |
operation. Read more
Performs the |=
operation. Read more
Performs the |=
operation. Read more
type Output = FixedBitSet
type Output = FixedBitSet
The resulting type after applying the ^
operator.
Performs the ^
operation. Read more
Performs the ^=
operation. Read more
Performs the ^=
operation. Read more
Returns the “default value” for a type. Read more
Sets the bit at index i to true for each item i in the input src.
Extends a collection with the contents of an iterator. Read more
extend_one
)Extends a collection with exactly one element.
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
Return a FixedBitSet containing bits set to true for every bit index in the iterator, other bits are set to false.
Creates a value from an iterator. Read more
Return true if the bit is enabled in the bitset, or false otherwise.
Note: bits outside the capacity are always disabled, and thus indexing a FixedBitSet will not panic.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for FixedBitSet
impl Send for FixedBitSet
impl Sync for FixedBitSet
impl Unpin for FixedBitSet
impl UnwindSafe for FixedBitSet
Blanket Implementations
Mutably borrows from an owned value. Read more