1
Fork 0

Add comment for Ord implementation for array

This commit is contained in:
Donough Liu 2020-05-06 17:02:53 +08:00
parent ea733c3a59
commit 5087c1ad2b

View file

@ -375,6 +375,7 @@ where
}
}
/// Implements comparison of arrays lexicographically.
#[stable(feature = "rust1", since = "1.0.0")]
impl<T: Ord, const N: usize> Ord for [T; N]
where