Skip to content

Commit 81160b7

Browse files
authored
Unrolled build for rust-lang#122074
Rollup merge of rust-lang#122074 - KonradHoeffner:patch-2, r=jhpratt Add missing PartialOrd trait implementation doc for array Analogously to vectors and slices, this PR documents the lexicographic sorting of PartialOrd as rustdoc comment on the trait implementation of PartialOrd for arrays. Associated issue: rust-lang#122073.
2 parents d03b986 + 533add8 commit 81160b7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

library/core/src/array/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,7 @@ where
360360
}
361361
}
362362

363+
/// Implements comparison of arrays [lexicographically](Ord#lexicographical-comparison).
363364
#[stable(feature = "rust1", since = "1.0.0")]
364365
impl<T: PartialOrd, const N: usize> PartialOrd for [T; N] {
365366
#[inline]

0 commit comments

Comments
 (0)