@@ -522,7 +522,7 @@ macro_rules! uint_impl {
522
522
#[ doc = concat!( "assert_eq!(1" , stringify!( $SelfT) , ".checked_div(0), None);" ) ]
523
523
/// ```
524
524
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
525
- #[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.51 .0" ) ]
525
+ #[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.52 .0" ) ]
526
526
#[ must_use = "this returns the result of the operation, \
527
527
without modifying the original"]
528
528
#[ inline]
@@ -548,7 +548,7 @@ macro_rules! uint_impl {
548
548
#[ doc = concat!( "assert_eq!(1" , stringify!( $SelfT) , ".checked_div_euclid(0), None);" ) ]
549
549
/// ```
550
550
#[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
551
- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
551
+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
552
552
#[ must_use = "this returns the result of the operation, \
553
553
without modifying the original"]
554
554
#[ inline]
@@ -573,7 +573,7 @@ macro_rules! uint_impl {
573
573
#[ doc = concat!( "assert_eq!(5" , stringify!( $SelfT) , ".checked_rem(0), None);" ) ]
574
574
/// ```
575
575
#[ stable( feature = "wrapping" , since = "1.7.0" ) ]
576
- #[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.51 .0" ) ]
576
+ #[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.52 .0" ) ]
577
577
#[ must_use = "this returns the result of the operation, \
578
578
without modifying the original"]
579
579
#[ inline]
@@ -599,7 +599,7 @@ macro_rules! uint_impl {
599
599
#[ doc = concat!( "assert_eq!(5" , stringify!( $SelfT) , ".checked_rem_euclid(0), None);" ) ]
600
600
/// ```
601
601
#[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
602
- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
602
+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
603
603
#[ must_use = "this returns the result of the operation, \
604
604
without modifying the original"]
605
605
#[ inline]
@@ -876,7 +876,7 @@ macro_rules! uint_impl {
876
876
#[ doc = concat!( "assert_eq!(100" , stringify!( $SelfT) , ".wrapping_div(10), 10);" ) ]
877
877
/// ```
878
878
#[ stable( feature = "num_wrapping" , since = "1.2.0" ) ]
879
- #[ rustc_const_stable( feature = "const_wrapping_int_methods" , since = "1.51 .0" ) ]
879
+ #[ rustc_const_stable( feature = "const_wrapping_int_methods" , since = "1.52 .0" ) ]
880
880
#[ must_use = "this returns the result of the operation, \
881
881
without modifying the original"]
882
882
#[ inline]
@@ -901,7 +901,7 @@ macro_rules! uint_impl {
901
901
#[ doc = concat!( "assert_eq!(100" , stringify!( $SelfT) , ".wrapping_div_euclid(10), 10);" ) ]
902
902
/// ```
903
903
#[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
904
- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
904
+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
905
905
#[ must_use = "this returns the result of the operation, \
906
906
without modifying the original"]
907
907
#[ inline]
@@ -924,7 +924,7 @@ macro_rules! uint_impl {
924
924
#[ doc = concat!( "assert_eq!(100" , stringify!( $SelfT) , ".wrapping_rem(10), 0);" ) ]
925
925
/// ```
926
926
#[ stable( feature = "num_wrapping" , since = "1.2.0" ) ]
927
- #[ rustc_const_stable( feature = "const_wrapping_int_methods" , since = "1.51 .0" ) ]
927
+ #[ rustc_const_stable( feature = "const_wrapping_int_methods" , since = "1.52 .0" ) ]
928
928
#[ must_use = "this returns the result of the operation, \
929
929
without modifying the original"]
930
930
#[ inline]
@@ -950,7 +950,7 @@ macro_rules! uint_impl {
950
950
#[ doc = concat!( "assert_eq!(100" , stringify!( $SelfT) , ".wrapping_rem_euclid(10), 0);" ) ]
951
951
/// ```
952
952
#[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
953
- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
953
+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
954
954
#[ must_use = "this returns the result of the operation, \
955
955
without modifying the original"]
956
956
#[ inline]
@@ -1185,7 +1185,7 @@ macro_rules! uint_impl {
1185
1185
/// ```
1186
1186
#[ inline]
1187
1187
#[ stable( feature = "wrapping" , since = "1.7.0" ) ]
1188
- #[ rustc_const_stable( feature = "const_overflowing_int_methods" , since = "1.51 .0" ) ]
1188
+ #[ rustc_const_stable( feature = "const_overflowing_int_methods" , since = "1.52 .0" ) ]
1189
1189
#[ must_use = "this returns the result of the operation, \
1190
1190
without modifying the original"]
1191
1191
pub const fn overflowing_div( self , rhs: Self ) -> ( Self , bool ) {
@@ -1215,7 +1215,7 @@ macro_rules! uint_impl {
1215
1215
/// ```
1216
1216
#[ inline]
1217
1217
#[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
1218
- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
1218
+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
1219
1219
#[ must_use = "this returns the result of the operation, \
1220
1220
without modifying the original"]
1221
1221
pub const fn overflowing_div_euclid( self , rhs: Self ) -> ( Self , bool ) {
@@ -1242,7 +1242,7 @@ macro_rules! uint_impl {
1242
1242
/// ```
1243
1243
#[ inline]
1244
1244
#[ stable( feature = "wrapping" , since = "1.7.0" ) ]
1245
- #[ rustc_const_stable( feature = "const_overflowing_int_methods" , since = "1.51 .0" ) ]
1245
+ #[ rustc_const_stable( feature = "const_overflowing_int_methods" , since = "1.52 .0" ) ]
1246
1246
#[ must_use = "this returns the result of the operation, \
1247
1247
without modifying the original"]
1248
1248
pub const fn overflowing_rem( self , rhs: Self ) -> ( Self , bool ) {
@@ -1272,7 +1272,7 @@ macro_rules! uint_impl {
1272
1272
/// ```
1273
1273
#[ inline]
1274
1274
#[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
1275
- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
1275
+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
1276
1276
#[ must_use = "this returns the result of the operation, \
1277
1277
without modifying the original"]
1278
1278
pub const fn overflowing_rem_euclid( self , rhs: Self ) -> ( Self , bool ) {
@@ -1456,7 +1456,7 @@ macro_rules! uint_impl {
1456
1456
#[ doc = concat!( "assert_eq!(7" , stringify!( $SelfT) , ".div_euclid(4), 1); // or any other integer type" ) ]
1457
1457
/// ```
1458
1458
#[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
1459
- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
1459
+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
1460
1460
#[ must_use = "this returns the result of the operation, \
1461
1461
without modifying the original"]
1462
1462
#[ inline]
@@ -1484,7 +1484,7 @@ macro_rules! uint_impl {
1484
1484
#[ doc = concat!( "assert_eq!(7" , stringify!( $SelfT) , ".rem_euclid(4), 3); // or any other integer type" ) ]
1485
1485
/// ```
1486
1486
#[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
1487
- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
1487
+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
1488
1488
#[ must_use = "this returns the result of the operation, \
1489
1489
without modifying the original"]
1490
1490
#[ inline]
0 commit comments