@@ -477,7 +477,6 @@ macro_rules! int_impl {
477
477
#[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MAX - 2).strict_add(3);" ) ]
478
478
/// ```
479
479
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
480
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
481
480
#[ must_use = "this returns the result of the operation, \
482
481
without modifying the original"]
483
482
#[ inline]
@@ -573,7 +572,6 @@ macro_rules! int_impl {
573
572
#[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MAX - 2).strict_add_unsigned(3);" ) ]
574
573
/// ```
575
574
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
576
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
577
575
#[ must_use = "this returns the result of the operation, \
578
576
without modifying the original"]
579
577
#[ inline]
@@ -629,7 +627,6 @@ macro_rules! int_impl {
629
627
#[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MIN + 2).strict_sub(3);" ) ]
630
628
/// ```
631
629
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
632
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
633
630
#[ must_use = "this returns the result of the operation, \
634
631
without modifying the original"]
635
632
#[ inline]
@@ -725,7 +722,6 @@ macro_rules! int_impl {
725
722
#[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MIN + 2).strict_sub_unsigned(3);" ) ]
726
723
/// ```
727
724
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
728
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
729
725
#[ must_use = "this returns the result of the operation, \
730
726
without modifying the original"]
731
727
#[ inline]
@@ -781,7 +777,6 @@ macro_rules! int_impl {
781
777
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MAX.strict_mul(2);" ) ]
782
778
/// ```
783
779
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
784
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
785
780
#[ must_use = "this returns the result of the operation, \
786
781
without modifying the original"]
787
782
#[ inline]
@@ -895,7 +890,6 @@ macro_rules! int_impl {
895
890
#[ doc = concat!( "let _ = (1" , stringify!( $SelfT) , ").strict_div(0);" ) ]
896
891
/// ```
897
892
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
898
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
899
893
#[ must_use = "this returns the result of the operation, \
900
894
without modifying the original"]
901
895
#[ inline]
@@ -969,7 +963,6 @@ macro_rules! int_impl {
969
963
#[ doc = concat!( "let _ = (1" , stringify!( $SelfT) , ").strict_div_euclid(0);" ) ]
970
964
/// ```
971
965
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
972
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
973
966
#[ must_use = "this returns the result of the operation, \
974
967
without modifying the original"]
975
968
#[ inline]
@@ -1042,7 +1035,6 @@ macro_rules! int_impl {
1042
1035
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_rem(-1);" ) ]
1043
1036
/// ```
1044
1037
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1045
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1046
1038
#[ must_use = "this returns the result of the operation, \
1047
1039
without modifying the original"]
1048
1040
#[ inline]
@@ -1115,7 +1107,6 @@ macro_rules! int_impl {
1115
1107
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_rem_euclid(-1);" ) ]
1116
1108
/// ```
1117
1109
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1118
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1119
1110
#[ must_use = "this returns the result of the operation, \
1120
1111
without modifying the original"]
1121
1112
#[ inline]
@@ -1203,7 +1194,6 @@ macro_rules! int_impl {
1203
1194
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_neg();" ) ]
1204
1195
///
1205
1196
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1206
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1207
1197
#[ must_use = "this returns the result of the operation, \
1208
1198
without modifying the original"]
1209
1199
#[ inline]
@@ -1267,7 +1257,6 @@ macro_rules! int_impl {
1267
1257
#[ doc = concat!( "let _ = 0x1" , stringify!( $SelfT) , ".strict_shl(129);" ) ]
1268
1258
/// ```
1269
1259
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1270
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1271
1260
#[ must_use = "this returns the result of the operation, \
1272
1261
without modifying the original"]
1273
1262
#[ inline]
@@ -1393,7 +1382,6 @@ macro_rules! int_impl {
1393
1382
#[ doc = concat!( "let _ = 0x10" , stringify!( $SelfT) , ".strict_shr(128);" ) ]
1394
1383
/// ```
1395
1384
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1396
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1397
1385
#[ must_use = "this returns the result of the operation, \
1398
1386
without modifying the original"]
1399
1387
#[ inline]
@@ -1521,7 +1509,6 @@ macro_rules! int_impl {
1521
1509
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_abs();" ) ]
1522
1510
/// ```
1523
1511
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1524
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1525
1512
#[ must_use = "this returns the result of the operation, \
1526
1513
without modifying the original"]
1527
1514
#[ inline]
@@ -1596,7 +1583,6 @@ macro_rules! int_impl {
1596
1583
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MAX.strict_pow(2);" ) ]
1597
1584
/// ```
1598
1585
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1599
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1600
1586
#[ must_use = "this returns the result of the operation, \
1601
1587
without modifying the original"]
1602
1588
#[ inline]
@@ -2370,7 +2356,6 @@ macro_rules! int_impl {
2370
2356
/// assert_eq!((sum1, sum0), (6, 8));
2371
2357
/// ```
2372
2358
#[ unstable( feature = "bigint_helper_methods" , issue = "85532" ) ]
2373
- #[ rustc_const_unstable( feature = "const_bigint_helper_methods" , issue = "85532" ) ]
2374
2359
#[ must_use = "this returns the result of the operation, \
2375
2360
without modifying the original"]
2376
2361
#[ inline]
@@ -2478,7 +2463,6 @@ macro_rules! int_impl {
2478
2463
#[ doc = concat!( "assert_eq!((diff1, diff0), (10, " , stringify!( $UnsignedT) , "::MAX));" ) ]
2479
2464
/// ```
2480
2465
#[ unstable( feature = "bigint_helper_methods" , issue = "85532" ) ]
2481
- #[ rustc_const_unstable( feature = "const_bigint_helper_methods" , issue = "85532" ) ]
2482
2466
#[ must_use = "this returns the result of the operation, \
2483
2467
without modifying the original"]
2484
2468
#[ inline]
0 commit comments