Function polars_arrow::bitmap::utils::set_bit

source ·
pub fn set_bit(bytes: &mut [u8], i: usize, value: bool)
Expand description

Sets bit at position i in bytes.

§Panics

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