Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/types/src/int_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ impl IntegerList {
.map_err(|_| IntegerListError::FailedToDeserialize)
}

/// Returns an iterator over the integers in the list.
pub fn iter(&self) -> roaring::treemap::Iter<'_> {
/// Returns an iterator over the integers in the list, in ascending order.
pub fn iter(&self) -> impl Iterator<Item = u64> + Clone + '_ {
self.0.iter()
}

Expand Down