File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1672,6 +1672,7 @@ impl<T: PartialOrd> PartialOrd for [T] {
1672
1672
}
1673
1673
}
1674
1674
1675
+ #[ doc( hidden) ]
1675
1676
// intermediate trait for specialization of slice's PartialEq
1676
1677
trait SlicePartialEq < B > {
1677
1678
fn equal ( & self , other : & [ B ] ) -> bool ;
@@ -1731,6 +1732,7 @@ impl<A> SlicePartialEq<A> for [A]
1731
1732
}
1732
1733
}
1733
1734
1735
+ #[ doc( hidden) ]
1734
1736
// intermediate trait for specialization of slice's PartialOrd
1735
1737
trait SlicePartialOrd < B > {
1736
1738
fn partial_compare ( & self , other : & [ B ] ) -> Option < Ordering > ;
@@ -1765,6 +1767,7 @@ impl SlicePartialOrd<u8> for [u8] {
1765
1767
}
1766
1768
}
1767
1769
1770
+ #[ doc( hidden) ]
1768
1771
// intermediate trait for specialization of slice's Ord
1769
1772
trait SliceOrd < B > {
1770
1773
fn compare ( & self , other : & [ B ] ) -> Ordering ;
@@ -1811,6 +1814,7 @@ impl SliceOrd<u8> for [u8] {
1811
1814
}
1812
1815
}
1813
1816
1817
+ #[ doc( hidden) ]
1814
1818
/// Trait implemented for types that can be compared for equality using
1815
1819
/// their bytewise representation
1816
1820
trait BytewiseEquality { }
You can’t perform that action at this time.
0 commit comments