We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08b9edf commit 74dc146Copy full SHA for 74dc146
src/libcore/slice.rs
@@ -1560,6 +1560,9 @@ impl<T: Eq> Eq for [T] {}
1560
impl<T: Ord> Ord for [T] {
1561
fn cmp(&self, other: &[T]) -> Ordering {
1562
let l = cmp::min(self.len(), other.len());
1563
+
1564
+ // Slice to the loop iteration range to enable bound check
1565
+ // elimination in the compiler
1566
let lhs = &self[..l];
1567
let rhs = &other[..l];
1568
@@ -1578,6 +1581,9 @@ impl<T: Ord> Ord for [T] {
1578
1581
impl<T: PartialOrd> PartialOrd for [T] {
1579
1582
fn partial_cmp(&self, other: &[T]) -> Option<Ordering> {
1580
1583
1584
1585
1586
1587
1588
1589
0 commit comments