pub struct Bitmap<const SIZE: usize>{ /* private fields */ }
Expand description
A compact array of bits.
The type used to store the bitmap will be the minimum unsigned integer type
required to fit the number of bits, from u8
to u128
. If the size is 1,
bool
is used. If the size exceeds 128, an array of u128
will be used,
sized as appropriately. The maximum supported size is currently 1024,
represented by an array [u128; 8]
.
Implementations§
source§impl Bitmap<128>
impl Bitmap<128>
pub unsafe fn load_m128i(&self) -> __m128i
sse2
only.source§impl Bitmap<256>
impl Bitmap<256>
pub unsafe fn load_m128i(&self) -> [__m128i; 2]
sse2
only.pub unsafe fn load_m256i(&self) -> __m256i
avx
only.source§impl Bitmap<512>
impl Bitmap<512>
pub unsafe fn load_m128i(&self) -> [__m128i; 4]
sse2
only.pub unsafe fn load_m256i(&self) -> [__m256i; 2]
avx
only.source§impl Bitmap<768>
impl Bitmap<768>
pub unsafe fn load_m128i(&self) -> [__m128i; 6]
sse2
only.pub unsafe fn load_m256i(&self) -> [__m256i; 3]
avx
only.source§impl Bitmap<1024>
impl Bitmap<1024>
pub unsafe fn load_m128i(&self) -> [__m128i; 8]
sse2
only.pub unsafe fn load_m256i(&self) -> [__m256i; 4]
avx
only.source§impl<const SIZE: usize> Bitmap<{ SIZE }>
impl<const SIZE: usize> Bitmap<{ SIZE }>
sourcepub fn mask(bits: usize) -> Self
pub fn mask(bits: usize) -> Self
Construct a bitmap where every bit with index less than bits
is
true
, and every other bit is false
.
sourcepub fn from_value(data: <BitsImpl<SIZE> as Bits>::Store) -> Self
pub fn from_value(data: <BitsImpl<SIZE> as Bits>::Store) -> Self
Construct a bitmap from a value of the same type as its backing store.
sourcepub fn into_value(self) -> <BitsImpl<SIZE> as Bits>::Store
pub fn into_value(self) -> <BitsImpl<SIZE> as Bits>::Store
Convert this bitmap into a value of the type of its backing store.
sourcepub fn as_value(&self) -> &<BitsImpl<SIZE> as Bits>::Store
pub fn as_value(&self) -> &<BitsImpl<SIZE> as Bits>::Store
Get a reference to this bitmap’s backing store.
pub fn as_bytes(&self) -> &[u8] ⓘ
sourcepub fn set(&mut self, index: usize, value: bool) -> bool
pub fn set(&mut self, index: usize, value: bool) -> bool
Set the value of the bit at a given index.
Returns the previous value of the bit.
sourcepub fn first_index(self) -> Option<usize>
pub fn first_index(self) -> Option<usize>
Find the index of the first true
bit in the bitmap.
sourcepub fn last_index(self) -> Option<usize>
pub fn last_index(self) -> Option<usize>
Find the index of the last true
bit in the bitmap.
sourcepub fn next_index(self, index: usize) -> Option<usize>
pub fn next_index(self, index: usize) -> Option<usize>
Find the index of the first true
bit in the bitmap after index
.
sourcepub fn prev_index(self, index: usize) -> Option<usize>
pub fn prev_index(self, index: usize) -> Option<usize>
Find the index of the last true
bit in the bitmap before index
.
sourcepub fn first_false_index(self) -> Option<usize>
pub fn first_false_index(self) -> Option<usize>
Find the index of the first false
bit in the bitmap.
sourcepub fn last_false_index(self) -> Option<usize>
pub fn last_false_index(self) -> Option<usize>
Find the index of the last false
bit in the bitmap.
sourcepub fn next_false_index(self, index: usize) -> Option<usize>
pub fn next_false_index(self, index: usize) -> Option<usize>
Find the index of the first false
bit in the bitmap after index
.
sourcepub fn prev_false_index(self, index: usize) -> Option<usize>
pub fn prev_false_index(self, index: usize) -> Option<usize>
Find the index of the first false
bit in the bitmap before index
.
Trait Implementations§
source§impl<const SIZE: usize> BitAndAssign for Bitmap<{ SIZE }>
impl<const SIZE: usize> BitAndAssign for Bitmap<{ SIZE }>
source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
&=
operation. Read moresource§impl<const SIZE: usize> BitOrAssign for Bitmap<{ SIZE }>
impl<const SIZE: usize> BitOrAssign for Bitmap<{ SIZE }>
source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
|=
operation. Read moresource§impl<const SIZE: usize> BitXorAssign for Bitmap<{ SIZE }>
impl<const SIZE: usize> BitXorAssign for Bitmap<{ SIZE }>
source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
^=
operation. Read moresource§impl<'a, const SIZE: usize> IntoIterator for &'a Bitmap<{ SIZE }>
impl<'a, const SIZE: usize> IntoIterator for &'a Bitmap<{ SIZE }>
source§impl<const SIZE: usize> Ord for Bitmap<{ SIZE }>
impl<const SIZE: usize> Ord for Bitmap<{ SIZE }>
source§impl<const SIZE: usize> PartialEq for Bitmap<{ SIZE }>
impl<const SIZE: usize> PartialEq for Bitmap<{ SIZE }>
source§impl<const SIZE: usize> PartialOrd for Bitmap<{ SIZE }>
impl<const SIZE: usize> PartialOrd for Bitmap<{ SIZE }>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moreimpl<const SIZE: usize> Copy for Bitmap<{ SIZE }>
impl<const SIZE: usize> Eq for Bitmap<{ SIZE }>
Auto Trait Implementations§
impl<const SIZE: usize> !Freeze for Bitmap<SIZE>
impl<const SIZE: usize> !RefUnwindSafe for Bitmap<SIZE>
impl<const SIZE: usize> !Send for Bitmap<SIZE>
impl<const SIZE: usize> !Sync for Bitmap<SIZE>
impl<const SIZE: usize> !Unpin for Bitmap<SIZE>
impl<const SIZE: usize> !UnwindSafe for Bitmap<SIZE>
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)