Function polars_arrow::bitmap::utils::get_bit

source ·
pub fn get_bit(bytes: &[u8], i: usize) -> bool
Expand description

Returns whether bit at position i in bytes is set.

§Panic

This function panics iff i >= bytes.len() * 8.