pub struct MutableBitmap { /* private fields */ }
Expand description
A container of booleans. MutableBitmap
is semantically equivalent
to Vec<bool>
.
The two main differences against Vec<bool>
is that each element stored as a single bit,
thereby:
- it uses 8x less memory
- it cannot be represented as
&[bool]
(i.e. no pointer arithmetics).
A MutableBitmap
can be converted to a Bitmap
at O(1)
.
§Examples
use re_arrow2::bitmap::MutableBitmap;
let bitmap = MutableBitmap::from([true, false, true]);
assert_eq!(bitmap.iter().collect::<Vec<_>>(), vec![true, false, true]);
// creation directly from bytes
let mut bitmap = MutableBitmap::try_new(vec![0b00001101], 5).unwrap();
// note: the first bit is the left-most of the first byte
assert_eq!(bitmap.iter().collect::<Vec<_>>(), vec![true, false, true, true, false]);
// we can also get the slice:
assert_eq!(bitmap.as_slice(), [0b00001101u8].as_ref());
// debug helps :)
assert_eq!(format!("{:?}", bitmap), "[0b___01101]".to_string());
// It supports mutation in place
bitmap.set(0, false);
assert_eq!(format!("{:?}", bitmap), "[0b___01100]".to_string());
// and `O(1)` random access
assert_eq!(bitmap.get(0), false);
§Implementation
This container is internally a Vec<u8>
.
Implementations§
source§impl MutableBitmap
impl MutableBitmap
sourcepub fn new() -> MutableBitmap
pub fn new() -> MutableBitmap
Initializes an empty MutableBitmap
.
sourcepub fn try_new(bytes: Vec<u8>, length: usize) -> Result<MutableBitmap, Error>
pub fn try_new(bytes: Vec<u8>, length: usize) -> Result<MutableBitmap, Error>
Initializes a new MutableBitmap
from a Vec<u8>
and a length.
§Errors
This function errors iff length > bytes.len() * 8
sourcepub fn from_vec(buffer: Vec<u8>, length: usize) -> MutableBitmap
pub fn from_vec(buffer: Vec<u8>, length: usize) -> MutableBitmap
Initializes a MutableBitmap
from a Vec<u8>
and a length.
This function is O(1)
.
§Panic
Panics iff the length is larger than the length of the buffer times 8.
sourcepub fn with_capacity(capacity: usize) -> MutableBitmap
pub fn with_capacity(capacity: usize) -> MutableBitmap
Initializes a pre-allocated MutableBitmap
with capacity for capacity
bits.
sourcepub fn push(&mut self, value: bool)
pub fn push(&mut self, value: bool)
Pushes a new bit to the MutableBitmap
, re-sizing it if necessary.
sourcepub fn pop(&mut self) -> Option<bool>
pub fn pop(&mut self) -> Option<bool>
Pop the last bit from the MutableBitmap
.
Note if the MutableBitmap
is empty, this method will return None.
sourcepub fn iter(&self) -> BitmapIter<'_> ⓘ
pub fn iter(&self) -> BitmapIter<'_> ⓘ
constructs a new iterator over the bits of MutableBitmap
.
sourcepub fn clear(&mut self)
pub fn clear(&mut self)
Empties the MutableBitmap
.
sourcepub fn extend_constant(&mut self, additional: usize, value: bool)
pub fn extend_constant(&mut self, additional: usize, value: bool)
Extends MutableBitmap
by additional
values of constant value
.
§Implementation
This function is an order of magnitude faster than pushing element by element.
sourcepub fn from_len_zeroed(length: usize) -> MutableBitmap
pub fn from_len_zeroed(length: usize) -> MutableBitmap
Initializes a zeroed MutableBitmap
.
sourcepub fn from_len_set(length: usize) -> MutableBitmap
pub fn from_len_set(length: usize) -> MutableBitmap
Initializes a MutableBitmap
with all values set to valid/ true.
sourcepub fn reserve(&mut self, additional: usize)
pub fn reserve(&mut self, additional: usize)
Reserves additional
bits in the MutableBitmap
, potentially re-allocating its buffer.
sourcepub fn capacity(&self) -> usize
pub fn capacity(&self) -> usize
Returns the capacity of MutableBitmap
in number of bits.
sourcepub unsafe fn push_unchecked(&mut self, value: bool)
pub unsafe fn push_unchecked(&mut self, value: bool)
Pushes a new bit to the MutableBitmap
§Safety
The caller must ensure that the MutableBitmap
has sufficient capacity.
sourcepub fn unset_bits(&self) -> usize
pub fn unset_bits(&self) -> usize
Returns the number of unset bits on this MutableBitmap
.
Guaranted to be <= self.len()
.
§Implementation
This function is O(N)
sourcepub fn null_count(&self) -> usize
👎Deprecated since 0.13.0: use unset_bits
instead
pub fn null_count(&self) -> usize
unset_bits
insteadReturns the number of unset bits on this MutableBitmap
.
sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the length of the MutableBitmap
.
sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns whether MutableBitmap
is empty.
sourcepub unsafe fn set_unchecked(&mut self, index: usize, value: bool)
pub unsafe fn set_unchecked(&mut self, index: usize, value: bool)
sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the MutableBitmap
to fit its current length.
source§impl MutableBitmap
impl MutableBitmap
sourcepub fn extend_from_trusted_len_iter<I>(&mut self, iterator: I)where
I: TrustedLen<Item = bool>,
pub fn extend_from_trusted_len_iter<I>(&mut self, iterator: I)where
I: TrustedLen<Item = bool>,
Extends self
from a TrustedLen
iterator.
sourcepub unsafe fn extend_from_trusted_len_iter_unchecked<I>(&mut self, iterator: I)
pub unsafe fn extend_from_trusted_len_iter_unchecked<I>(&mut self, iterator: I)
Extends self
from an iterator of trusted len.
§Safety
The caller must guarantee that the iterator has a trusted len.
sourcepub unsafe fn from_trusted_len_iter_unchecked<I>(iterator: I) -> MutableBitmap
pub unsafe fn from_trusted_len_iter_unchecked<I>(iterator: I) -> MutableBitmap
Creates a new MutableBitmap
from an iterator of booleans.
§Safety
The iterator must report an accurate length.
sourcepub fn from_trusted_len_iter<I>(iterator: I) -> MutableBitmapwhere
I: TrustedLen<Item = bool>,
pub fn from_trusted_len_iter<I>(iterator: I) -> MutableBitmapwhere
I: TrustedLen<Item = bool>,
Creates a new MutableBitmap
from an iterator of booleans.
sourcepub fn try_from_trusted_len_iter<E, I>(iterator: I) -> Result<MutableBitmap, E>
pub fn try_from_trusted_len_iter<E, I>(iterator: I) -> Result<MutableBitmap, E>
Creates a new MutableBitmap
from an iterator of booleans.
sourcepub unsafe fn try_from_trusted_len_iter_unchecked<E, I>(
iterator: I
) -> Result<MutableBitmap, E>
pub unsafe fn try_from_trusted_len_iter_unchecked<E, I>( iterator: I ) -> Result<MutableBitmap, E>
Creates a new MutableBitmap
from an falible iterator of booleans.
§Safety
The caller must guarantee that the iterator is TrustedLen
.
sourcepub unsafe fn extend_from_slice_unchecked(
&mut self,
slice: &[u8],
offset: usize,
length: usize
)
pub unsafe fn extend_from_slice_unchecked( &mut self, slice: &[u8], offset: usize, length: usize )
Extends the MutableBitmap
from a slice of bytes with optional offset.
This is the fastest way to extend a MutableBitmap
.
§Implementation
When both MutableBitmap
’s length and offset
are both multiples of 8,
this function performs a memcopy. Else, it first aligns bit by bit and then performs a memcopy.
§Safety
Caller must ensure offset + length <= slice.len() * 8
sourcepub fn extend_from_slice(&mut self, slice: &[u8], offset: usize, length: usize)
pub fn extend_from_slice(&mut self, slice: &[u8], offset: usize, length: usize)
Extends the MutableBitmap
from a slice of bytes with optional offset.
This is the fastest way to extend a MutableBitmap
.
§Implementation
When both MutableBitmap
’s length and offset
are both multiples of 8,
this function performs a memcopy. Else, it first aligns bit by bit and then performs a memcopy.
sourcepub fn extend_from_bitmap(&mut self, bitmap: &Bitmap)
pub fn extend_from_bitmap(&mut self, bitmap: &Bitmap)
Extends the MutableBitmap
from a Bitmap
.
sourcepub fn as_slice(&self) -> &[u8] ⓘ
pub fn as_slice(&self) -> &[u8] ⓘ
Returns the slice of bytes of this MutableBitmap
.
Note that the last byte may not be fully used.
Trait Implementations§
source§impl<'a> BitAnd<&'a Bitmap> for MutableBitmap
impl<'a> BitAnd<&'a Bitmap> for MutableBitmap
§type Output = MutableBitmap
type Output = MutableBitmap
&
operator.source§impl<'a> BitAndAssign<&'a Bitmap> for &mut MutableBitmap
impl<'a> BitAndAssign<&'a Bitmap> for &mut MutableBitmap
source§fn bitand_assign(&mut self, rhs: &'a Bitmap)
fn bitand_assign(&mut self, rhs: &'a Bitmap)
&=
operation. Read moresource§impl<'a> BitOr<&'a Bitmap> for MutableBitmap
impl<'a> BitOr<&'a Bitmap> for MutableBitmap
§type Output = MutableBitmap
type Output = MutableBitmap
|
operator.source§impl<'a> BitOrAssign<&'a Bitmap> for &mut MutableBitmap
impl<'a> BitOrAssign<&'a Bitmap> for &mut MutableBitmap
source§fn bitor_assign(&mut self, rhs: &'a Bitmap)
fn bitor_assign(&mut self, rhs: &'a Bitmap)
|=
operation. Read moresource§impl<'a> BitXor<&'a Bitmap> for MutableBitmap
impl<'a> BitXor<&'a Bitmap> for MutableBitmap
§type Output = MutableBitmap
type Output = MutableBitmap
^
operator.source§impl<'a> BitXorAssign<&'a Bitmap> for &mut MutableBitmap
impl<'a> BitXorAssign<&'a Bitmap> for &mut MutableBitmap
source§fn bitxor_assign(&mut self, rhs: &'a Bitmap)
fn bitxor_assign(&mut self, rhs: &'a Bitmap)
^=
operation. Read moresource§impl Clone for MutableBitmap
impl Clone for MutableBitmap
source§fn clone(&self) -> MutableBitmap
fn clone(&self) -> MutableBitmap
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MutableBitmap
impl Debug for MutableBitmap
source§impl Default for MutableBitmap
impl Default for MutableBitmap
source§fn default() -> MutableBitmap
fn default() -> MutableBitmap
source§impl From<MutableBitmap> for Bitmap
impl From<MutableBitmap> for Bitmap
source§fn from(buffer: MutableBitmap) -> Bitmap
fn from(buffer: MutableBitmap) -> Bitmap
source§impl<P> From<P> for MutableBitmap
impl<P> From<P> for MutableBitmap
source§fn from(slice: P) -> MutableBitmap
fn from(slice: P) -> MutableBitmap
source§impl FromIterator<bool> for MutableBitmap
impl FromIterator<bool> for MutableBitmap
source§fn from_iter<I>(iter: I) -> MutableBitmapwhere
I: IntoIterator<Item = bool>,
fn from_iter<I>(iter: I) -> MutableBitmapwhere
I: IntoIterator<Item = bool>,
source§impl<'a> IntoIterator for &'a MutableBitmap
impl<'a> IntoIterator for &'a MutableBitmap
§type IntoIter = BitmapIter<'a>
type IntoIter = BitmapIter<'a>
source§fn into_iter(self) -> <&'a MutableBitmap as IntoIterator>::IntoIter
fn into_iter(self) -> <&'a MutableBitmap as IntoIterator>::IntoIter
source§impl Not for MutableBitmap
impl Not for MutableBitmap
§type Output = MutableBitmap
type Output = MutableBitmap
!
operator.source§fn not(self) -> MutableBitmap
fn not(self) -> MutableBitmap
!
operation. Read moresource§impl PartialEq for MutableBitmap
impl PartialEq for MutableBitmap
source§fn eq(&self, other: &MutableBitmap) -> bool
fn eq(&self, other: &MutableBitmap) -> bool
self
and other
values to be equal, and is used
by ==
.Auto Trait Implementations§
impl Freeze for MutableBitmap
impl RefUnwindSafe for MutableBitmap
impl Send for MutableBitmap
impl Sync for MutableBitmap
impl Unpin for MutableBitmap
impl UnwindSafe for MutableBitmap
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> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
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 more