Function polars_arrow::bitmap::binary_assign_mut

source ·
pub fn binary_assign_mut<T: BitChunk, F>(
    lhs: &mut MutableBitmap,
    rhs: &MutableBitmap,
    op: F,
)
where F: Fn(T, T) -> T,
Expand description

Apply a bitwise binary operation to a MutableBitmap.

This function can be used for operations like &= to a MutableBitmap.

§Panics

This function panics iff lhs.len() != rhs.len()`