@@ -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]
@@ -1266,7 +1256,6 @@ macro_rules! int_impl {
1266
1256
#[ doc = concat!( "let _ = 0x1" , stringify!( $SelfT) , ".strict_shl(129);" ) ]
1267
1257
/// ```
1268
1258
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1269
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1270
1259
#[ must_use = "this returns the result of the operation, \
1271
1260
without modifying the original"]
1272
1261
#[ inline]
@@ -1325,7 +1314,6 @@ macro_rules! int_impl {
1325
1314
#[ doc = concat!( "assert_eq!(0x1" , stringify!( $SelfT) , ".unbounded_shl(129), 0);" ) ]
1326
1315
/// ```
1327
1316
#[ unstable( feature = "unbounded_shifts" , issue = "129375" ) ]
1328
- #[ rustc_const_unstable( feature = "const_unbounded_shifts" , issue = "129375" ) ]
1329
1317
#[ must_use = "this returns the result of the operation, \
1330
1318
without modifying the original"]
1331
1319
#[ inline]
@@ -1391,7 +1379,6 @@ macro_rules! int_impl {
1391
1379
#[ doc = concat!( "let _ = 0x10" , stringify!( $SelfT) , ".strict_shr(128);" ) ]
1392
1380
/// ```
1393
1381
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1394
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1395
1382
#[ must_use = "this returns the result of the operation, \
1396
1383
without modifying the original"]
1397
1384
#[ inline]
@@ -1452,7 +1439,6 @@ macro_rules! int_impl {
1452
1439
#[ doc = concat!( "assert_eq!(" , stringify!( $SelfT) , "::MIN.unbounded_shr(129), -1);" ) ]
1453
1440
/// ```
1454
1441
#[ unstable( feature = "unbounded_shifts" , issue = "129375" ) ]
1455
- #[ rustc_const_unstable( feature = "const_unbounded_shifts" , issue = "129375" ) ]
1456
1442
#[ must_use = "this returns the result of the operation, \
1457
1443
without modifying the original"]
1458
1444
#[ inline]
@@ -1519,7 +1505,6 @@ macro_rules! int_impl {
1519
1505
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_abs();" ) ]
1520
1506
/// ```
1521
1507
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1522
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1523
1508
#[ must_use = "this returns the result of the operation, \
1524
1509
without modifying the original"]
1525
1510
#[ inline]
@@ -1594,7 +1579,6 @@ macro_rules! int_impl {
1594
1579
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MAX.strict_pow(2);" ) ]
1595
1580
/// ```
1596
1581
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1597
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1598
1582
#[ must_use = "this returns the result of the operation, \
1599
1583
without modifying the original"]
1600
1584
#[ inline]
@@ -2368,7 +2352,6 @@ macro_rules! int_impl {
2368
2352
/// assert_eq!((sum1, sum0), (6, 8));
2369
2353
/// ```
2370
2354
#[ unstable( feature = "bigint_helper_methods" , issue = "85532" ) ]
2371
- #[ rustc_const_unstable( feature = "const_bigint_helper_methods" , issue = "85532" ) ]
2372
2355
#[ must_use = "this returns the result of the operation, \
2373
2356
without modifying the original"]
2374
2357
#[ inline]
@@ -2476,7 +2459,6 @@ macro_rules! int_impl {
2476
2459
#[ doc = concat!( "assert_eq!((diff1, diff0), (10, " , stringify!( $UnsignedT) , "::MAX));" ) ]
2477
2460
/// ```
2478
2461
#[ unstable( feature = "bigint_helper_methods" , issue = "85532" ) ]
2479
- #[ rustc_const_unstable( feature = "const_bigint_helper_methods" , issue = "85532" ) ]
2480
2462
#[ must_use = "this returns the result of the operation, \
2481
2463
without modifying the original"]
2482
2464
#[ inline]
0 commit comments