pub fn binary_fold<B, F, R>( lhs: &Bitmap, rhs: &Bitmap, op: F, init: B, fold: R, ) -> Bwhere F: Fn(u64, u64) -> B, R: Fn(B, B) -> B,
Apply a bitwise operation op to two inputs and fold the result.
op