pub struct ScalarBitSet<T>(pub T);
Expand description
A small bitset built on top of a single primitive integer type.
§Example
use cranelift_bitset::ScalarBitSet;
// Create a new bitset backed with a `u32`.
let mut bitset = ScalarBitSet::<u32>::new();
// Bitsets are initially empty.
assert!(bitset.is_empty());
assert_eq!(bitset.len(), 0);
// Insert into the bitset.
bitset.insert(4);
bitset.insert(5);
bitset.insert(6);
// Now the bitset is not empty.
assert_eq!(bitset.len(), 3);
assert!(!bitset.is_empty());
assert!(bitset.contains(4));
assert!(bitset.contains(5));
assert!(bitset.contains(6));
// Remove an element from the bitset.
let was_present = bitset.remove(6);
assert!(was_present);
assert!(!bitset.contains(6));
assert_eq!(bitset.len(), 2);
// Can iterate over the elements in the set.
let elems: Vec<_> = bitset.iter().collect();
assert_eq!(elems, [4, 5]);
Tuple Fields§
§0: T
Implementations§
source§impl<T> ScalarBitSet<T>where
T: ScalarBitSetStorage,
impl<T> ScalarBitSet<T>where
T: ScalarBitSetStorage,
sourcepub fn new() -> Self
pub fn new() -> Self
Create a new, empty bitset.
§Example
use cranelift_bitset::ScalarBitSet;
let bitset = ScalarBitSet::<u64>::new();
assert!(bitset.is_empty());
sourcepub fn from_range(lo: u8, hi: u8) -> Self
pub fn from_range(lo: u8, hi: u8) -> Self
Construct a bitset with the half-open range [lo, hi)
inserted.
§Example
use cranelift_bitset::ScalarBitSet;
let bitset = ScalarBitSet::<u64>::from_range(3, 6);
assert_eq!(bitset.len(), 3);
assert!(bitset.contains(3));
assert!(bitset.contains(4));
assert!(bitset.contains(5));
§Panics
Panics if lo > hi
or if hi > Self::capacity()
.
use cranelift_bitset::ScalarBitSet;
// The lower bound may not be larger than the upper bound.
let bitset = ScalarBitSet::<u64>::from_range(6, 3);
use cranelift_bitset::ScalarBitSet;
// The bounds must fit within the backing scalar type.
let bitset = ScalarBitSet::<u64>::from_range(3, 69);
sourcepub fn capacity() -> u8
pub fn capacity() -> u8
The maximum number of bits that can be stored in this bitset.
If you need more bits than this, use a
CompoundBitSet
instead of a ScalarBitSet
.
§Example
use cranelift_bitset::ScalarBitSet;
assert_eq!(ScalarBitSet::<u8>::capacity(), 8);
assert_eq!(ScalarBitSet::<u64>::capacity(), 64);
sourcepub fn len(&self) -> u8
pub fn len(&self) -> u8
Get the number of elements in this set.
§Example
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u64>::new();
assert_eq!(bitset.len(), 0);
bitset.insert(24);
bitset.insert(13);
bitset.insert(36);
assert_eq!(bitset.len(), 3);
sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Is this bitset empty?
§Example
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u16>::new();
assert!(bitset.is_empty());
bitset.insert(10);
assert!(!bitset.is_empty());
sourcepub fn contains(&self, i: u8) -> bool
pub fn contains(&self, i: u8) -> bool
Check whether this bitset contains i
.
§Example
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u8>::new();
assert!(!bitset.contains(7));
bitset.insert(7);
assert!(bitset.contains(7));
§Panics
Panics if i
is greater than or equal to Self::capacity()
.
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u8>::new();
// A `ScalarBitSet<u8>` can only hold the elements `0..=7`, so `8` is
// out of bounds and will trigger a panic.
bitset.contains(8);
sourcepub fn insert(&mut self, i: u8) -> bool
pub fn insert(&mut self, i: u8) -> bool
Insert i
into this bitset.
Returns whether the value was newly inserted. That is:
-
If the set did not previously contain
i
thentrue
is returned. -
If the set already contained
i
thenfalse
is returned.
§Example
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u8>::new();
// When an element is inserted that was not already present in the set,
// then `true` is returned.
let is_new = bitset.insert(7);
assert!(is_new);
// The element is now present in the set.
assert!(bitset.contains(7));
// And when the element is already in the set, `false` is returned from
// `insert`.
let is_new = bitset.insert(7);
assert!(!is_new);
§Panics
Panics if i
is greater than or equal to Self::capacity()
.
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u32>::new();
// A `ScalarBitSet<u32>` can only hold the elements `0..=31`, so `42` is
// out of bounds and will trigger a panic.
bitset.insert(42);
sourcepub fn remove(&mut self, i: u8) -> bool
pub fn remove(&mut self, i: u8) -> bool
Remove i
from this bitset.
Returns whether i
was previously in this set or not.
§Example
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u128>::new();
// Removing an element that was not present in the set returns `false`.
let was_present = bitset.remove(100);
assert!(!was_present);
// And when the element was in the set, `true` is returned.
bitset.insert(100);
let was_present = bitset.remove(100);
assert!(was_present);
§Panics
Panics if i
is greater than or equal to Self::capacity()
.
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u16>::new();
// A `ScalarBitSet<u16>` can only hold the elements `0..=15`, so `20` is
// out of bounds and will trigger a panic.
bitset.remove(20);
sourcepub fn clear(&mut self)
pub fn clear(&mut self)
Remove all entries from this bitset.
§Example
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u32>::new();
bitset.insert(10);
bitset.insert(20);
bitset.insert(30);
bitset.clear();
assert!(bitset.is_empty());
sourcepub fn pop_min(&mut self) -> Option<u8>
pub fn pop_min(&mut self) -> Option<u8>
Remove and return the smallest value in the bitset.
§Example
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u64>::new();
bitset.insert(0);
bitset.insert(24);
bitset.insert(13);
bitset.insert(36);
assert_eq!(bitset.pop_min(), Some(0));
assert_eq!(bitset.pop_min(), Some(13));
assert_eq!(bitset.pop_min(), Some(24));
assert_eq!(bitset.pop_min(), Some(36));
assert_eq!(bitset.pop_min(), None);
sourcepub fn pop_max(&mut self) -> Option<u8>
pub fn pop_max(&mut self) -> Option<u8>
Remove and return the largest value in the bitset.
§Example
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u64>::new();
bitset.insert(0);
bitset.insert(24);
bitset.insert(13);
bitset.insert(36);
assert_eq!(bitset.pop_max(), Some(36));
assert_eq!(bitset.pop_max(), Some(24));
assert_eq!(bitset.pop_max(), Some(13));
assert_eq!(bitset.pop_max(), Some(0));
assert_eq!(bitset.pop_max(), None);
sourcepub fn min(&self) -> Option<u8>
pub fn min(&self) -> Option<u8>
Return the smallest number contained in this bitset or None
if this
bitset is empty.
§Example
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u64>::new();
// When the bitset is empty, `min` returns `None`.
assert_eq!(bitset.min(), None);
bitset.insert(28);
bitset.insert(1);
bitset.insert(63);
// When the bitset is not empty, it returns the smallest element.
assert_eq!(bitset.min(), Some(1));
sourcepub fn max(&self) -> Option<u8>
pub fn max(&self) -> Option<u8>
Return the largest number contained in the bitset or None if this bitset is empty
§Example
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u64>::new();
// When the bitset is empty, `max` returns `None`.
assert_eq!(bitset.max(), None);
bitset.insert(0);
bitset.insert(36);
bitset.insert(49);
// When the bitset is not empty, it returns the smallest element.
assert_eq!(bitset.max(), Some(49));
sourcepub fn iter(self) -> Iter<T> ⓘ
pub fn iter(self) -> Iter<T> ⓘ
Iterate over the items in this set.
Items are always yielded in sorted order.
§Example
use cranelift_bitset::ScalarBitSet;
let mut bitset = ScalarBitSet::<u64>::new();
bitset.insert(19);
bitset.insert(3);
bitset.insert(63);
bitset.insert(0);
assert_eq!(
bitset.iter().collect::<Vec<_>>(),
[0, 3, 19, 63],
);
Trait Implementations§
source§impl<'a, T> Arbitrary<'a> for ScalarBitSet<T>where
T: ScalarBitSetStorage + Arbitrary<'a>,
impl<'a, T> Arbitrary<'a> for ScalarBitSet<T>where
T: ScalarBitSetStorage + Arbitrary<'a>,
source§fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>
Self
from the given unstructured data. Read more§fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
Self
from the entirety of the given
unstructured data. Read moresource§impl<T: Clone> Clone for ScalarBitSet<T>
impl<T: Clone> Clone for ScalarBitSet<T>
source§fn clone(&self) -> ScalarBitSet<T>
fn clone(&self) -> ScalarBitSet<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<T> Debug for ScalarBitSet<T>where
T: ScalarBitSetStorage,
impl<T> Debug for ScalarBitSet<T>where
T: ScalarBitSetStorage,
source§impl<T> Default for ScalarBitSet<T>where
T: ScalarBitSetStorage,
impl<T> Default for ScalarBitSet<T>where
T: ScalarBitSetStorage,
source§impl<'de, T> Deserialize<'de> for ScalarBitSet<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for ScalarBitSet<T>where
T: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl<T: ScalarBitSetStorage> From<T> for ScalarBitSet<T>
impl<T: ScalarBitSetStorage> From<T> for ScalarBitSet<T>
source§impl<'a, T> IntoIterator for &'a ScalarBitSet<T>where
T: ScalarBitSetStorage,
impl<'a, T> IntoIterator for &'a ScalarBitSet<T>where
T: ScalarBitSetStorage,
source§impl<T> IntoIterator for ScalarBitSet<T>where
T: ScalarBitSetStorage,
impl<T> IntoIterator for ScalarBitSet<T>where
T: ScalarBitSetStorage,
source§impl<T: PartialEq> PartialEq for ScalarBitSet<T>
impl<T: PartialEq> PartialEq for ScalarBitSet<T>
source§impl<T> Serialize for ScalarBitSet<T>where
T: Serialize,
impl<T> Serialize for ScalarBitSet<T>where
T: Serialize,
impl<T: Copy> Copy for ScalarBitSet<T>
impl<T: Eq> Eq for ScalarBitSet<T>
impl<T> StructuralPartialEq for ScalarBitSet<T>
Auto Trait Implementations§
impl<T> Freeze for ScalarBitSet<T>where
T: Freeze,
impl<T> RefUnwindSafe for ScalarBitSet<T>where
T: RefUnwindSafe,
impl<T> Send for ScalarBitSet<T>where
T: Send,
impl<T> Sync for ScalarBitSet<T>where
T: Sync,
impl<T> Unpin for ScalarBitSet<T>where
T: Unpin,
impl<T> UnwindSafe for ScalarBitSet<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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)