Closed
Description
On https://doc.rust-lang.org/std/cmp/trait.PartialOrd.html:
The docs for PartialOrd on tuples show the where
clauses in a weird order, obscuring the fact that the last element of the tuple is allowed to be unsized.
impl<A, B, C, D, E> PartialOrd<(A, B, C, D, E)> for (A, B, C, D, E) where
C: PartialOrd<C> + PartialEq<C>,
E: PartialOrd<E> + PartialEq<E> + ?Sized,
B: PartialOrd<B> + PartialEq<B>,
A: PartialOrd<A> + PartialEq<A>,
D: PartialOrd<D> + PartialEq<D>,