File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 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] {
16721672 }
16731673}
16741674
1675+ #[ doc( hidden) ]
16751676// intermediate trait for specialization of slice's PartialEq
16761677trait SlicePartialEq < B > {
16771678 fn equal ( & self , other : & [ B ] ) -> bool ;
@@ -1731,6 +1732,7 @@ impl<A> SlicePartialEq<A> for [A]
17311732 }
17321733}
17331734
1735+ #[ doc( hidden) ]
17341736// intermediate trait for specialization of slice's PartialOrd
17351737trait SlicePartialOrd < B > {
17361738 fn partial_compare ( & self , other : & [ B ] ) -> Option < Ordering > ;
@@ -1765,6 +1767,7 @@ impl SlicePartialOrd<u8> for [u8] {
17651767 }
17661768}
17671769
1770+ #[ doc( hidden) ]
17681771// intermediate trait for specialization of slice's Ord
17691772trait SliceOrd < B > {
17701773 fn compare ( & self , other : & [ B ] ) -> Ordering ;
@@ -1811,6 +1814,7 @@ impl SliceOrd<u8> for [u8] {
18111814 }
18121815}
18131816
1817+ #[ doc( hidden) ]
18141818/// Trait implemented for types that can be compared for equality using
18151819/// their bytewise representation
18161820trait BytewiseEquality { }
You can’t perform that action at this time.
0 commit comments