Function polars_arrow::bitmap::utils::count_zeros

source ·
pub fn count_zeros(slice: &[u8], offset: usize, len: usize) -> usize
Expand description

Returns the number of zero bits in the slice offsetted by offset and a length of length.

§Panics

This function panics iff `offset + len > 8 * slice.len()``.