Remove some warnings

This commit is contained in:
Louis Dureuil 2023-10-25 13:37:42 +02:00
parent 073f89db79
commit 01d5eedf2f
No known key found for this signature in database
2 changed files with 8 additions and 37 deletions

View file

@ -1,16 +1,12 @@
use std::borrow::Cow;
use std::collections::HashMap;
use std::convert::TryInto;
use std::{fmt, str};
use std::fmt;
use fst::map::IndexedValue;
use fst::{IntoStreamer, Streamer};
use roaring::RoaringBitmap;
use fst::Streamer;
use crate::DocumentId;
const DELETED_ID: u64 = u64::MAX;
pub enum DocumentOperationKind {
Create,
Delete,
@ -133,8 +129,3 @@ impl Default for ExternalDocumentsIds<'static> {
ExternalDocumentsIds(fst::Map::default().map_data(Cow::Owned).unwrap())
}
}
/// Returns the value of the `IndexedValue` with the highest _index_.
fn indexed_last_value(indexed_values: &[IndexedValue]) -> Option<u64> {
indexed_values.iter().copied().max_by_key(|iv| iv.index).map(|iv| iv.value)
}