@@ -1810,9 +1810,9 @@ mod impls {
1810
1810
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1811
1811
impl PartialEq for $t {
1812
1812
#[ inline]
1813
- fn eq( & self , other: & $t ) -> bool { ( * self ) == ( * other) }
1813
+ fn eq( & self , other: & Self ) -> bool { * self == * other }
1814
1814
#[ inline]
1815
- fn ne( & self , other: & $t ) -> bool { ( * self ) != ( * other) }
1815
+ fn ne( & self , other: & Self ) -> bool { * self != * other }
1816
1816
}
1817
1817
) * )
1818
1818
}
@@ -1842,8 +1842,18 @@ mod impls {
1842
1842
1843
1843
eq_impl ! { ( ) bool char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
1844
1844
1845
- macro_rules! chaining_methods_impl {
1846
- ( $t: ty) => {
1845
+ #[ rustfmt:: skip]
1846
+ macro_rules! partial_ord_methods_primitive_impl {
1847
+ ( ) => {
1848
+ #[ inline( always) ]
1849
+ fn lt( & self , other: & Self ) -> bool { * self < * other }
1850
+ #[ inline( always) ]
1851
+ fn le( & self , other: & Self ) -> bool { * self <= * other }
1852
+ #[ inline( always) ]
1853
+ fn gt( & self , other: & Self ) -> bool { * self > * other }
1854
+ #[ inline( always) ]
1855
+ fn ge( & self , other: & Self ) -> bool { * self >= * other }
1856
+
1847
1857
// These implementations are the same for `Ord` or `PartialOrd` types
1848
1858
// because if either is NAN the `==` test will fail so we end up in
1849
1859
// the `Break` case and the comparison will correctly return `false`.
@@ -1876,24 +1886,16 @@ mod impls {
1876
1886
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1877
1887
impl PartialOrd for $t {
1878
1888
#[ inline]
1879
- fn partial_cmp( & self , other: & $t ) -> Option <Ordering > {
1889
+ fn partial_cmp( & self , other: & Self ) -> Option <Ordering > {
1880
1890
match ( * self <= * other, * self >= * other) {
1881
1891
( false , false ) => None ,
1882
1892
( false , true ) => Some ( Greater ) ,
1883
1893
( true , false ) => Some ( Less ) ,
1884
1894
( true , true ) => Some ( Equal ) ,
1885
1895
}
1886
1896
}
1887
- #[ inline( always) ]
1888
- fn lt( & self , other: & $t) -> bool { ( * self ) < ( * other) }
1889
- #[ inline( always) ]
1890
- fn le( & self , other: & $t) -> bool { ( * self ) <= ( * other) }
1891
- #[ inline( always) ]
1892
- fn ge( & self , other: & $t) -> bool { ( * self ) >= ( * other) }
1893
- #[ inline( always) ]
1894
- fn gt( & self , other: & $t) -> bool { ( * self ) > ( * other) }
1895
-
1896
- chaining_methods_impl!( $t) ;
1897
+
1898
+ partial_ord_methods_primitive_impl!( ) ;
1897
1899
}
1898
1900
) * )
1899
1901
}
@@ -1912,6 +1914,8 @@ mod impls {
1912
1914
fn partial_cmp ( & self , other : & bool ) -> Option < Ordering > {
1913
1915
Some ( self . cmp ( other) )
1914
1916
}
1917
+
1918
+ partial_ord_methods_primitive_impl ! ( ) ;
1915
1919
}
1916
1920
1917
1921
partial_ord_impl ! { f16 f32 f64 f128 }
@@ -1921,25 +1925,17 @@ mod impls {
1921
1925
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1922
1926
impl PartialOrd for $t {
1923
1927
#[ inline]
1924
- fn partial_cmp( & self , other: & $t ) -> Option <Ordering > {
1928
+ fn partial_cmp( & self , other: & Self ) -> Option <Ordering > {
1925
1929
Some ( crate :: intrinsics:: three_way_compare( * self , * other) )
1926
1930
}
1927
- #[ inline( always) ]
1928
- fn lt( & self , other: & $t) -> bool { ( * self ) < ( * other) }
1929
- #[ inline( always) ]
1930
- fn le( & self , other: & $t) -> bool { ( * self ) <= ( * other) }
1931
- #[ inline( always) ]
1932
- fn ge( & self , other: & $t) -> bool { ( * self ) >= ( * other) }
1933
- #[ inline( always) ]
1934
- fn gt( & self , other: & $t) -> bool { ( * self ) > ( * other) }
1935
-
1936
- chaining_methods_impl!( $t) ;
1931
+
1932
+ partial_ord_methods_primitive_impl!( ) ;
1937
1933
}
1938
1934
1939
1935
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1940
1936
impl Ord for $t {
1941
1937
#[ inline]
1942
- fn cmp( & self , other: & $t ) -> Ordering {
1938
+ fn cmp( & self , other: & Self ) -> Ordering {
1943
1939
crate :: intrinsics:: three_way_compare( * self , * other)
1944
1940
}
1945
1941
}
0 commit comments