Skip to content

Commit c762f93

Browse files
committed
Mark array run symmetric_difference_with operation as unimplemented
1 parent 3c99804 commit c762f93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bitmap/store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ impl Store {
720720
*this = new;
721721
}
722722
// TODO(jpg) symmetric_difference_with array, run
723-
(&mut Array(ref mut _vec), &Run(ref _intervals)) => {}
723+
(&mut Array(ref mut _vec), &Run(ref _intervals)) => unimplemented!(),
724724
(&mut Bitmap(ref mut bits1), &Bitmap(ref bits2)) => {
725725
for (index1, &index2) in bits1.iter_mut().zip(bits2.iter()) {
726726
*index1 ^= index2;

0 commit comments

Comments
 (0)