pub struct Bitmap {
num_bits: usize,
count_ones: usize,
bits: Option<Box<[usize]>>,
}
Expand description
An immutable bitmap. Use BitmapBuilder
to build it.
Fields§
§num_bits: usize
The useful bits in the bitmap. The total number of bits will usually be larger than the useful bits due to byte-padding.
count_ones: usize
The number of high bits in the bitmap.
bits: Option<Box<[usize]>>
Bits are stored in a compact form.
They are packed into usize
s.
Optimization: If all bits are set to 0 or 1, this field MUST be None
.
Implementations§
source§impl Bitmap
impl Bitmap
sourcefn from_vec_with_len(buf: Vec<usize>, num_bits: usize) -> Self
fn from_vec_with_len(buf: Vec<usize>, num_bits: usize) -> Self
Creates a new bitmap from vector.
sourcepub fn from_bytes(buf: &[u8]) -> Self
pub fn from_bytes(buf: &[u8]) -> Self
Creates a new bitmap from bytes.
sourcefn from_bytes_with_len(buf: &[u8], num_bits: usize) -> Self
fn from_bytes_with_len(buf: &[u8], num_bits: usize) -> Self
Creates a new bitmap from bytes and length.
sourcepub fn from_bool_slice(bools: &[bool]) -> Self
pub fn from_bool_slice(bools: &[bool]) -> Self
Creates a new bitmap from a slice of bool
.
sourcepub fn next_set_bit(&self, bit_idx: usize) -> Option<usize>
pub fn next_set_bit(&self, bit_idx: usize) -> Option<usize>
Return the next set bit index on or after bit_idx
.
sourcepub fn count_ones(&self) -> usize
pub fn count_ones(&self) -> usize
Counts the number of bits set to 1.
sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the number of valid bits in the bitmap, also referred to its ‘length’.
sourcepub unsafe fn is_set_unchecked(&self, idx: usize) -> bool
pub unsafe fn is_set_unchecked(&self, idx: usize) -> bool
Returns true if the bit at idx
is set, without doing bounds checking.
§Safety
Index must be in range.
sourcepub fn iter(&self) -> BitmapIter<'_> ⓘ
pub fn iter(&self) -> BitmapIter<'_> ⓘ
Produces an iterator over each bit.
sourcepub fn iter_ones(&self) -> BitmapOnesIter<'_> ⓘ
pub fn iter_ones(&self) -> BitmapOnesIter<'_> ⓘ
Enumerates the index of each bit set to 1.
sourcepub fn high_ranges(&self) -> impl Iterator<Item = RangeInclusive<usize>> + '_
pub fn high_ranges(&self) -> impl Iterator<Item = RangeInclusive<usize>> + '_
Returns an iterator which yields the position ranges of continuous high bits.
sourcepub fn from_range(num_bits: usize, range: Range<usize>) -> Self
pub fn from_range(num_bits: usize, range: Range<usize>) -> Self
Creates a new bitmap with all bits in range set to 1.
§Example
use risingwave_common::bitmap::Bitmap;
let bitmap = Bitmap::from_range(200, 100..180);
assert_eq!(bitmap.count_ones(), 80);
for i in 0..200 {
assert_eq!(bitmap.is_set(i), i >= 100 && i < 180);
}
Trait Implementations§
source§impl BitAndAssign<&Bitmap> for Bitmap
impl BitAndAssign<&Bitmap> for Bitmap
source§fn bitand_assign(&mut self, rhs: &Bitmap)
fn bitand_assign(&mut self, rhs: &Bitmap)
&=
operation. Read moresource§impl BitAndAssign for Bitmap
impl BitAndAssign for Bitmap
source§fn bitand_assign(&mut self, rhs: Bitmap)
fn bitand_assign(&mut self, rhs: Bitmap)
&=
operation. Read moresource§impl BitOrAssign<&Bitmap> for Bitmap
impl BitOrAssign<&Bitmap> for Bitmap
source§fn bitor_assign(&mut self, rhs: &Bitmap)
fn bitor_assign(&mut self, rhs: &Bitmap)
|=
operation. Read moresource§impl BitOrAssign for Bitmap
impl BitOrAssign for Bitmap
source§fn bitor_assign(&mut self, rhs: Bitmap)
fn bitor_assign(&mut self, rhs: Bitmap)
|=
operation. Read moresource§impl EstimateSize for Bitmap
impl EstimateSize for Bitmap
source§fn estimated_heap_size(&self) -> usize
fn estimated_heap_size(&self) -> usize
source§fn estimated_size(&self) -> usizewhere
Self: Sized,
fn estimated_size(&self) -> usizewhere
Self: Sized,
estimated_heap_size
and the size of Self
.source§impl From<Bitmap> for BitmapBuilder
impl From<Bitmap> for BitmapBuilder
source§impl FromIterator<bool> for Bitmap
impl FromIterator<bool> for Bitmap
source§impl VnodeBitmapExt for Bitmap
impl VnodeBitmapExt for Bitmap
source§fn iter_vnodes(&self) -> impl Iterator<Item = VirtualNode> + '_
fn iter_vnodes(&self) -> impl Iterator<Item = VirtualNode> + '_
source§fn iter_vnodes_scalar(&self) -> impl Iterator<Item = i16> + '_
fn iter_vnodes_scalar(&self) -> impl Iterator<Item = i16> + '_
source§fn vnode_ranges(&self) -> impl Iterator<Item = RangeInclusive<VirtualNode>> + '_
fn vnode_ranges(&self) -> impl Iterator<Item = RangeInclusive<VirtualNode>> + '_
source§fn is_singleton(&self) -> bool
fn is_singleton(&self) -> bool
SINGLETON_VNODE
is set in the bitmap.source§fn singleton() -> &'static Self
fn singleton() -> &'static Self
SINGLETON_VNODE
set to true.source§fn singleton_arc() -> &'static Arc<Self>
fn singleton_arc() -> &'static Arc<Self>
SINGLETON_VNODE
set to true.impl Eq for Bitmap
impl StructuralPartialEq for Bitmap
Auto Trait Implementations§
impl Freeze for Bitmap
impl RefUnwindSafe for Bitmap
impl Send for Bitmap
impl Sync for Bitmap
impl Unpin for Bitmap
impl UnwindSafe for Bitmap
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
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
source§impl<M> MetricVecRelabelExt for M
impl<M> MetricVecRelabelExt for M
source§fn relabel(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
RelabeledMetricVec::with_metric_level
.source§fn relabel_n(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
relabel_num: usize,
) -> RelabeledMetricVec<M>
fn relabel_n( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, relabel_num: usize, ) -> RelabeledMetricVec<M>
RelabeledMetricVec::with_metric_level_relabel_n
.source§fn relabel_debug_1(
self,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel_debug_1( self, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
RelabeledMetricVec::with_metric_level_relabel_n
with metric_level
set to
MetricLevel::Debug
and relabel_num
set to 1.