Function polars_arrow::bitmap::utils::set_bit_unchecked
source · pub unsafe fn set_bit_unchecked(bytes: &mut [u8], i: usize, value: bool)
Expand description
Sets bit at position i
in bytes
without doing bound checks
§Safety
i >= bytes.len() * 8
results in undefined behavior.