mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Update usage of iterators
This commit is contained in:
parent
042d86cbb3
commit
8ae441a4db
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ fn facet_ordered_set_based<'t>(
|
|||
candidates,
|
||||
)?;
|
||||
|
||||
Ok(Box::new(number_iter.chain(string_iter)))
|
||||
Ok(Box::new(number_iter.chain(string_iter).map(|res| res.map(|(doc_ids, _)| doc_ids))))
|
||||
}
|
||||
|
||||
/// Returns an iterator over groups of the given candidates in ascending or descending order.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue