diff options
| author | Konrad Höffner <konrad.hoeffner@uni-leipzig.de> | 2024-03-06 10:28:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-06 10:28:56 +0100 |
| commit | 533add895c198b3340900f843b5a627e08679581 (patch) | |
| tree | 162343c1bf27e96ef4eb9678b08cbb663e6a04a4 /library/core/src/array | |
| parent | 80399064afa4a2cd153f30d02c25f7ea0383ed65 (diff) | |
| download | rust-533add895c198b3340900f843b5a627e08679581.tar.gz rust-533add895c198b3340900f843b5a627e08679581.zip | |
add missing PartialOrd impl doc for array
Diffstat (limited to 'library/core/src/array')
| -rw-r--r-- | library/core/src/array/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index 42663ff2b53..8b5b48c59c2 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -360,6 +360,7 @@ where } } +/// Implements comparison of arrays [lexicographically](Ord#lexicographical-comparison). #[stable(feature = "rust1", since = "1.0.0")] impl<T: PartialOrd, const N: usize> PartialOrd for [T; N] { #[inline] |
