pub struct BitPacker1x;
Expand description
BitPacker1x
is standard bitpacking : the integer representation over
b
bits are simply concatenated one after the other.
One block must contain 32 integers
.
Trait Implementations§
Source§impl BitPacker for BitPacker1x
impl BitPacker for BitPacker1x
Source§fn new() -> BitPacker1x
fn new() -> BitPacker1x
Checks the available instructions set on the current
CPU and returns the best available implementation. Read more
Source§fn compress(
&self,
decompressed: &[u32],
compressed: &mut [u8],
num_bits: u8,
) -> usize
fn compress( &self, decompressed: &[u32], compressed: &mut [u8], num_bits: u8, ) -> usize
Compress a block of
u32
. Read moreSource§fn compress_sorted(
&self,
initial: u32,
decompressed: &[u32],
compressed: &mut [u8],
num_bits: u8,
) -> usize
fn compress_sorted( &self, initial: u32, decompressed: &[u32], compressed: &mut [u8], num_bits: u8, ) -> usize
Delta encode and compressed the
decompressed
array. Read moreSource§fn compress_strictly_sorted(
&self,
initial: Option<u32>,
decompressed: &[u32],
compressed: &mut [u8],
num_bits: u8,
) -> usize
fn compress_strictly_sorted( &self, initial: Option<u32>, decompressed: &[u32], compressed: &mut [u8], num_bits: u8, ) -> usize
Delta encode and compress the
decompressed
array. Read moreSource§fn decompress_sorted(
&self,
initial: u32,
compressed: &[u8],
decompressed: &mut [u32],
num_bits: u8,
) -> usize
fn decompress_sorted( &self, initial: u32, compressed: &[u8], decompressed: &mut [u32], num_bits: u8, ) -> usize
Decompress the
compress
array to the decompressed
array.
The compressed
array is assumed to have been delta-encoded and compressed. Read moreSource§fn decompress_strictly_sorted(
&self,
initial: Option<u32>,
compressed: &[u8],
decompressed: &mut [u32],
num_bits: u8,
) -> usize
fn decompress_strictly_sorted( &self, initial: Option<u32>, compressed: &[u8], decompressed: &mut [u32], num_bits: u8, ) -> usize
Decompress the
compress
array to the decompressed
array.
The compressed
array is assumed to have been strict-delta-encoded and compressed. Read moreSource§fn num_bits(&self, decompressed: &[u32]) -> u8
fn num_bits(&self, decompressed: &[u32]) -> u8
Returns the minimum number of bits used to represent the largest integer in the
decompressed
block. Read moreSource§fn num_bits_sorted(&self, initial: u32, decompressed: &[u32]) -> u8
fn num_bits_sorted(&self, initial: u32, decompressed: &[u32]) -> u8
Returns the minimum number of bits used to represent the largest
delta
in the deltas in the
decompressed
block. Read moreSource§fn num_bits_strictly_sorted(
&self,
initial: Option<u32>,
decompressed: &[u32],
) -> u8
fn num_bits_strictly_sorted( &self, initial: Option<u32>, decompressed: &[u32], ) -> u8
Returns the minimum number of bits used to represent the largest
delta-1
in the deltas in the
decompressed
block. Read moreSource§fn compressed_block_size(num_bits: u8) -> usize
fn compressed_block_size(num_bits: u8) -> usize
Returns the size of a compressed block.
Source§impl Clone for BitPacker1x
impl Clone for BitPacker1x
Source§fn clone(&self) -> BitPacker1x
fn clone(&self) -> BitPacker1x
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for BitPacker1x
Auto Trait Implementations§
impl Freeze for BitPacker1x
impl RefUnwindSafe for BitPacker1x
impl Send for BitPacker1x
impl Sync for BitPacker1x
impl Unpin for BitPacker1x
impl UnwindSafe for BitPacker1x
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
Mutably borrows from an owned value. Read more