Function re_viewer::external::arrow2::bitmap::binary_assign

pub fn binary_assign<T, F>(lhs: &mut MutableBitmap, rhs: &Bitmap, op: F)
where T: BitChunk, 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()`