mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-09-15 17:26:25 +00:00
Remove the roaring operation functions warnings
This commit is contained in:
@ -12,7 +12,7 @@ impl AvailableDocumentsIds {
|
||||
match docids.max() {
|
||||
Some(last_id) => {
|
||||
let mut available = RoaringBitmap::from_iter(0..last_id);
|
||||
available.difference_with(&docids);
|
||||
available -= docids;
|
||||
|
||||
let iter = match last_id.checked_add(1) {
|
||||
Some(id) => id..=u32::max_value(),
|
||||
|
Reference in New Issue
Block a user