We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9af4366 commit 9612ae9Copy full SHA for 9612ae9
src/bitmap/store.rs
@@ -545,13 +545,17 @@ impl Store {
545
}
546
547
*intervals1 = merged;
548
- },
+ }
549
(this @ &mut Run(..), &Array(..)) => {
550
let mut new = other.clone();
551
new.intersect_with(this);
552
*this = new;
553
554
- (&mut Run(ref mut _intervals), _store @ &Bitmap(..)) => unimplemented!(),
+ (this @ &mut Run(..), &Bitmap(..)) => {
555
+ let mut new = other.clone();
556
+ new.intersect_with(this);
557
+ *this = new;
558
559
560
561
0 commit comments