Skip to content

Commit

Permalink
Mark array run symmetric_difference_with operation as unimplemented
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Sep 13, 2020
1 parent ac9613b commit d7fc191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bitmap/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ impl Store {
*this = new;
}
// TODO(jpg) symmetric_difference_with array, run
(&mut Array(ref mut _vec), &Run(ref _intervals)) => {}
(&mut Array(ref mut _vec), &Run(ref _intervals)) => unimplemented!(),
(&mut Bitmap(ref mut bits1), &Bitmap(ref bits2)) => {
for (index1, &index2) in bits1.iter_mut().zip(bits2.iter()) {
*index1 ^= index2;
Expand Down

0 comments on commit d7fc191

Please sign in to comment.