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: usizeThe useful bits in the bitmap. The total number of bits will usually be larger than the useful bits due to byte-padding.
count_ones: usizeThe number of high bits in the bitmap.
bits: Option<Box<[usize]>>Bits are stored in a compact form.
They are packed into usizes.
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.
Sourcepub fn from_indices(num_bits: usize, ones: &[usize]) -> Self
pub fn from_indices(num_bits: usize, ones: &[usize]) -> Self
Creates a new bitmap from the indices of bits set to 1.
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,
§impl<T> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Any.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Any.§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<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.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> SameOrElseExt for Twhere
T: Eq,
impl<T> SameOrElseExt for Twhere
T: Eq,
Source§fn same_or_else(self, other: T, f: impl FnOnce() -> T) -> T
fn same_or_else(self, other: T, f: impl FnOnce() -> T) -> T
self and other are equal, if so, return self, otherwise return the result of f().