Skip to content

Commit 830ecbd

Browse files
committed
Optimize is_sorted for Range and RangeInclusive
The `Step` trait guarantees that `Range<impl Step>` yields items in sorted order. We can override the `Iterator::is_sorted` method based on this guarantee, as we already do for `Iterator::min` and `max`.
1 parent 8f8092c commit 830ecbd

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

library/core/src/iter/range.rs

+10
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,11 @@ impl<A: Step> Iterator for ops::Range<A> {
672672
self.next_back()
673673
}
674674

675+
#[inline]
676+
fn is_sorted(self) -> bool {
677+
true
678+
}
679+
675680
#[inline]
676681
#[doc(hidden)]
677682
unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item
@@ -1095,6 +1100,11 @@ impl<A: Step> Iterator for ops::RangeInclusive<A> {
10951100
fn max(mut self) -> Option<A> {
10961101
self.next_back()
10971102
}
1103+
1104+
#[inline]
1105+
fn is_sorted(self) -> bool {
1106+
true
1107+
}
10981108
}
10991109

11001110
#[stable(feature = "inclusive_range", since = "1.26.0")]

0 commit comments

Comments
 (0)