Closed
Description
Location
Summary
The trait implementation of Ord for arrays is properly commented:
impl<T, const N: usize> Ord for [T; N]
where
T: Ord,Implements comparison of arrays lexicographically.
However this is missing for PartialOrd:
impl<T, const N: usize> PartialOrd for [T; N]
where
T: PartialOrd,