pub struct BooleanBuffer {
buffer: Buffer,
offset: usize,
len: usize,
}Expand description
A slice-able Buffer containing bit-packed booleans
BooleanBuffers can be modified using BooleanBufferBuilder
§See Also
NullBufferfor representing null values in Arrow arrays
Fields§
§buffer: Buffer§offset: usize§len: usizeImplementations§
Source§impl BooleanBuffer
impl BooleanBuffer
Sourcepub fn new(buffer: Buffer, offset: usize, len: usize) -> Self
pub fn new(buffer: Buffer, offset: usize, len: usize) -> Self
Create a new BooleanBuffer from a Buffer, an offset and length in bits
§Panics
This method will panic if buffer is not large enough
Sourcepub fn new_set(length: usize) -> Self
pub fn new_set(length: usize) -> Self
Create a new BooleanBuffer of length where all values are true
Sourcepub fn new_unset(length: usize) -> Self
pub fn new_unset(length: usize) -> Self
Create a new BooleanBuffer of length where all values are false
Sourcepub fn collect_bool<F: FnMut(usize) -> bool>(len: usize, f: F) -> Self
pub fn collect_bool<F: FnMut(usize) -> bool>(len: usize, f: F) -> Self
Invokes f with indexes 0..len collecting the boolean results into a new BooleanBuffer
Sourcepub fn from_bits(
src: impl AsRef<[u8]>,
offset_in_bits: usize,
len_in_bits: usize,
) -> Self
pub fn from_bits( src: impl AsRef<[u8]>, offset_in_bits: usize, len_in_bits: usize, ) -> Self
Create a new BooleanBuffer by copying the relevant bits from an
input buffer.
§Notes:
- The new
BooleanBufferhas zero offset, even ifoffset_in_bitsis non-zero
§Example: Create a new BooleanBuffer copying a bit slice from in input slice
let input = [0b11001100u8, 0b10111010u8];
// // Copy bits 4..16 from input
let result = BooleanBuffer::from_bits(&input, 4, 12);
assert_eq!(result.values(), &[0b10101100u8, 0b00001011u8]);Sourcepub fn from_bitwise_unary_op<F>(
src: impl AsRef<[u8]>,
offset_in_bits: usize,
len_in_bits: usize,
op: F,
) -> Self
pub fn from_bitwise_unary_op<F>( src: impl AsRef<[u8]>, offset_in_bits: usize, len_in_bits: usize, op: F, ) -> Self
Create a new BooleanBuffer by applying the bitwise operation to op
to an input buffer.
This function is faster than applying the operation bit by bit as it processes input buffers in chunks of 64 bits (8 bytes) at a time
§Notes:
optakes a singleu64inputs and produces oneu64output.opmust only apply bitwise operations on the relevant bits; the inputu64may contain irrelevant bits and may be processed differently on different endian architectures.- The output always has zero offset
§See Also
apply_bitwise_unary_opfor in-place unary bitwise operations
§Example: Create new BooleanBuffer from bitwise NOT of an input Buffer
let input = [0b11001100u8, 0b10111010u8]; // 2 bytes = 16 bits
// NOT of the first 12 bits
let result = BooleanBuffer::from_bitwise_unary_op(
&input, 0, 12, |a| !a
);
assert_eq!(result.values(), &[0b00110011u8, 0b11110101u8]);Sourcefn try_from_aligned_bitwise_unary_op<F>(
src: &[u8],
len_in_bits: usize,
op: &mut F,
) -> Option<Self>
fn try_from_aligned_bitwise_unary_op<F>( src: &[u8], len_in_bits: usize, op: &mut F, ) -> Option<Self>
Fast path for Self::from_bitwise_unary_op when input is aligned to
8-byte (64-bit) boundaries
Returns None if the fast path cannot be taken
Sourcepub fn count_set_bits(&self) -> usize
pub fn count_set_bits(&self) -> usize
Returns the number of set bits in this buffer
Sourcepub fn bit_chunks(&self) -> BitChunks<'_>
pub fn bit_chunks(&self) -> BitChunks<'_>
Returns a BitChunks instance which can be used to iterate over
this buffer’s bits in u64 chunks
Sourcepub fn offset(&self) -> usize
pub fn offset(&self) -> usize
Returns the offset of this BooleanBuffer in bits
Sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the length of this BooleanBuffer in bits
Sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true if this BooleanBuffer is empty
Sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Free up unused memory.
Sourcepub unsafe fn value_unchecked(&self, i: usize) -> bool
pub unsafe fn value_unchecked(&self, i: usize) -> bool
Returns the boolean value at index i.
§Safety
This doesn’t check bounds, the caller must ensure that index < self.len()
Sourcepub fn values(&self) -> &[u8] ⓘ
pub fn values(&self) -> &[u8] ⓘ
Returns the packed values of this BooleanBuffer not including any offset
Sourcepub fn slice(&self, offset: usize, len: usize) -> Self
pub fn slice(&self, offset: usize, len: usize) -> Self
Slices this BooleanBuffer by the provided offset and length
Sourcepub fn sliced(&self) -> Buffer
pub fn sliced(&self) -> Buffer
Returns a Buffer containing the sliced contents of this BooleanBuffer
Equivalent to self.buffer.bit_slice(self.offset, self.len)
Sourcepub fn ptr_eq(&self, other: &Self) -> bool
pub fn ptr_eq(&self, other: &Self) -> bool
Returns true if this BooleanBuffer is equal to other, using pointer comparisons
to determine buffer equality. This is cheaper than PartialEq::eq but may
return false when the arrays are logically equal
Sourcepub fn into_inner(self) -> Buffer
pub fn into_inner(self) -> Buffer
Returns the inner Buffer, consuming self
Sourcepub fn iter(&self) -> BitIterator<'_> ⓘ
pub fn iter(&self) -> BitIterator<'_> ⓘ
Returns an iterator over the bits in this BooleanBuffer
Sourcepub fn set_indices(&self) -> BitIndexIterator<'_> ⓘ
pub fn set_indices(&self) -> BitIndexIterator<'_> ⓘ
Returns an iterator over the set bit positions in this BooleanBuffer
Sourcepub fn set_indices_u32(&self) -> BitIndexU32Iterator<'_> ⓘ
pub fn set_indices_u32(&self) -> BitIndexU32Iterator<'_> ⓘ
Returns a u32 iterator over set bit positions without any usize->u32 conversion
Sourcepub fn set_slices(&self) -> BitSliceIterator<'_> ⓘ
pub fn set_slices(&self) -> BitSliceIterator<'_> ⓘ
Returns a BitSliceIterator yielding contiguous ranges of set bits
Trait Implementations§
Source§impl BitAnd<&BooleanBuffer> for &BooleanBuffer
impl BitAnd<&BooleanBuffer> for &BooleanBuffer
Source§type Output = BooleanBuffer
type Output = BooleanBuffer
& operator.Source§impl BitOr<&BooleanBuffer> for &BooleanBuffer
impl BitOr<&BooleanBuffer> for &BooleanBuffer
Source§type Output = BooleanBuffer
type Output = BooleanBuffer
| operator.Source§impl BitXor<&BooleanBuffer> for &BooleanBuffer
impl BitXor<&BooleanBuffer> for &BooleanBuffer
Source§type Output = BooleanBuffer
type Output = BooleanBuffer
^ operator.Source§impl Clone for BooleanBuffer
impl Clone for BooleanBuffer
Source§fn clone(&self) -> BooleanBuffer
fn clone(&self) -> BooleanBuffer
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for BooleanBuffer
impl Debug for BooleanBuffer
Source§impl From<&[bool]> for BooleanBuffer
impl From<&[bool]> for BooleanBuffer
Source§impl From<BooleanBuffer> for NullBuffer
impl From<BooleanBuffer> for NullBuffer
Source§fn from(value: BooleanBuffer) -> Self
fn from(value: BooleanBuffer) -> Self
Source§impl From<BooleanBufferBuilder> for BooleanBuffer
impl From<BooleanBufferBuilder> for BooleanBuffer
Source§fn from(builder: BooleanBufferBuilder) -> Self
fn from(builder: BooleanBufferBuilder) -> Self
Source§impl FromIterator<bool> for BooleanBuffer
impl FromIterator<bool> for BooleanBuffer
Source§impl<'a> IntoIterator for &'a BooleanBuffer
impl<'a> IntoIterator for &'a BooleanBuffer
Source§impl Not for &BooleanBuffer
impl Not for &BooleanBuffer
Source§impl PartialEq for BooleanBuffer
impl PartialEq for BooleanBuffer
impl Eq for BooleanBuffer
Auto Trait Implementations§
impl Freeze for BooleanBuffer
impl RefUnwindSafe for BooleanBuffer
impl Send for BooleanBuffer
impl Sync for BooleanBuffer
impl Unpin for BooleanBuffer
impl UnwindSafe for BooleanBuffer
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
clone_to_uninit)