@@ -517,7 +517,7 @@ impl f32 {
517
517
/// ```
518
518
#[ must_use]
519
519
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
520
- #[ rustc_const_stable( feature = "const_float_classify" , since = "CURRENT_RUSTC_VERSION " ) ]
520
+ #[ rustc_const_stable( feature = "const_float_classify" , since = "1.83.0 " ) ]
521
521
#[ inline]
522
522
#[ allow( clippy:: eq_op) ] // > if you intended to check if the operand is NaN, use `.is_nan()` instead :)
523
523
pub const fn is_nan ( self ) -> bool {
@@ -550,7 +550,7 @@ impl f32 {
550
550
/// ```
551
551
#[ must_use]
552
552
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
553
- #[ rustc_const_stable( feature = "const_float_classify" , since = "CURRENT_RUSTC_VERSION " ) ]
553
+ #[ rustc_const_stable( feature = "const_float_classify" , since = "1.83.0 " ) ]
554
554
#[ inline]
555
555
pub const fn is_infinite ( self ) -> bool {
556
556
// Getting clever with transmutation can result in incorrect answers on some FPUs
@@ -575,7 +575,7 @@ impl f32 {
575
575
/// ```
576
576
#[ must_use]
577
577
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
578
- #[ rustc_const_stable( feature = "const_float_classify" , since = "CURRENT_RUSTC_VERSION " ) ]
578
+ #[ rustc_const_stable( feature = "const_float_classify" , since = "1.83.0 " ) ]
579
579
#[ inline]
580
580
pub const fn is_finite ( self ) -> bool {
581
581
// There's no need to handle NaN separately: if self is NaN,
@@ -603,7 +603,7 @@ impl f32 {
603
603
/// [subnormal]: https://en.wikipedia.org/wiki/Denormal_number
604
604
#[ must_use]
605
605
#[ stable( feature = "is_subnormal" , since = "1.53.0" ) ]
606
- #[ rustc_const_stable( feature = "const_float_classify" , since = "CURRENT_RUSTC_VERSION " ) ]
606
+ #[ rustc_const_stable( feature = "const_float_classify" , since = "1.83.0 " ) ]
607
607
#[ inline]
608
608
pub const fn is_subnormal ( self ) -> bool {
609
609
matches ! ( self . classify( ) , FpCategory :: Subnormal )
@@ -630,7 +630,7 @@ impl f32 {
630
630
/// [subnormal]: https://en.wikipedia.org/wiki/Denormal_number
631
631
#[ must_use]
632
632
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
633
- #[ rustc_const_stable( feature = "const_float_classify" , since = "CURRENT_RUSTC_VERSION " ) ]
633
+ #[ rustc_const_stable( feature = "const_float_classify" , since = "1.83.0 " ) ]
634
634
#[ inline]
635
635
pub const fn is_normal ( self ) -> bool {
636
636
matches ! ( self . classify( ) , FpCategory :: Normal )
@@ -650,7 +650,7 @@ impl f32 {
650
650
/// assert_eq!(inf.classify(), FpCategory::Infinite);
651
651
/// ```
652
652
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
653
- #[ rustc_const_stable( feature = "const_float_classify" , since = "CURRENT_RUSTC_VERSION " ) ]
653
+ #[ rustc_const_stable( feature = "const_float_classify" , since = "1.83.0 " ) ]
654
654
pub const fn classify ( self ) -> FpCategory {
655
655
// We used to have complicated logic here that avoids the simple bit-based tests to work
656
656
// around buggy codegen for x87 targets (see
@@ -686,7 +686,7 @@ impl f32 {
686
686
/// ```
687
687
#[ must_use]
688
688
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
689
- #[ rustc_const_stable( feature = "const_float_classify" , since = "CURRENT_RUSTC_VERSION " ) ]
689
+ #[ rustc_const_stable( feature = "const_float_classify" , since = "1.83.0 " ) ]
690
690
#[ inline]
691
691
pub const fn is_sign_positive ( self ) -> bool {
692
692
!self . is_sign_negative ( )
@@ -711,7 +711,7 @@ impl f32 {
711
711
/// ```
712
712
#[ must_use]
713
713
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
714
- #[ rustc_const_stable( feature = "const_float_classify" , since = "CURRENT_RUSTC_VERSION " ) ]
714
+ #[ rustc_const_stable( feature = "const_float_classify" , since = "1.83.0 " ) ]
715
715
#[ inline]
716
716
pub const fn is_sign_negative ( self ) -> bool {
717
717
// IEEE754 says: isSignMinus(x) is true if and only if x has negative sign. isSignMinus
@@ -1093,7 +1093,7 @@ impl f32 {
1093
1093
#[ must_use = "this returns the result of the operation, \
1094
1094
without modifying the original"]
1095
1095
#[ stable( feature = "float_bits_conv" , since = "1.20.0" ) ]
1096
- #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "CURRENT_RUSTC_VERSION " ) ]
1096
+ #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "1.83.0 " ) ]
1097
1097
#[ inline]
1098
1098
pub const fn to_bits ( self ) -> u32 {
1099
1099
// SAFETY: `u32` is a plain old datatype so we can always transmute to it.
@@ -1137,7 +1137,7 @@ impl f32 {
1137
1137
/// assert_eq!(v, 12.5);
1138
1138
/// ```
1139
1139
#[ stable( feature = "float_bits_conv" , since = "1.20.0" ) ]
1140
- #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "CURRENT_RUSTC_VERSION " ) ]
1140
+ #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "1.83.0 " ) ]
1141
1141
#[ must_use]
1142
1142
#[ inline]
1143
1143
pub const fn from_bits ( v : u32 ) -> Self {
@@ -1161,7 +1161,7 @@ impl f32 {
1161
1161
#[ must_use = "this returns the result of the operation, \
1162
1162
without modifying the original"]
1163
1163
#[ stable( feature = "float_to_from_bytes" , since = "1.40.0" ) ]
1164
- #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "CURRENT_RUSTC_VERSION " ) ]
1164
+ #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "1.83.0 " ) ]
1165
1165
#[ inline]
1166
1166
pub const fn to_be_bytes ( self ) -> [ u8 ; 4 ] {
1167
1167
self . to_bits ( ) . to_be_bytes ( )
@@ -1182,7 +1182,7 @@ impl f32 {
1182
1182
#[ must_use = "this returns the result of the operation, \
1183
1183
without modifying the original"]
1184
1184
#[ stable( feature = "float_to_from_bytes" , since = "1.40.0" ) ]
1185
- #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "CURRENT_RUSTC_VERSION " ) ]
1185
+ #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "1.83.0 " ) ]
1186
1186
#[ inline]
1187
1187
pub const fn to_le_bytes ( self ) -> [ u8 ; 4 ] {
1188
1188
self . to_bits ( ) . to_le_bytes ( )
@@ -1216,7 +1216,7 @@ impl f32 {
1216
1216
#[ must_use = "this returns the result of the operation, \
1217
1217
without modifying the original"]
1218
1218
#[ stable( feature = "float_to_from_bytes" , since = "1.40.0" ) ]
1219
- #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "CURRENT_RUSTC_VERSION " ) ]
1219
+ #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "1.83.0 " ) ]
1220
1220
#[ inline]
1221
1221
pub const fn to_ne_bytes ( self ) -> [ u8 ; 4 ] {
1222
1222
self . to_bits ( ) . to_ne_bytes ( )
@@ -1234,7 +1234,7 @@ impl f32 {
1234
1234
/// assert_eq!(value, 12.5);
1235
1235
/// ```
1236
1236
#[ stable( feature = "float_to_from_bytes" , since = "1.40.0" ) ]
1237
- #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "CURRENT_RUSTC_VERSION " ) ]
1237
+ #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "1.83.0 " ) ]
1238
1238
#[ must_use]
1239
1239
#[ inline]
1240
1240
pub const fn from_be_bytes ( bytes : [ u8 ; 4 ] ) -> Self {
@@ -1253,7 +1253,7 @@ impl f32 {
1253
1253
/// assert_eq!(value, 12.5);
1254
1254
/// ```
1255
1255
#[ stable( feature = "float_to_from_bytes" , since = "1.40.0" ) ]
1256
- #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "CURRENT_RUSTC_VERSION " ) ]
1256
+ #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "1.83.0 " ) ]
1257
1257
#[ must_use]
1258
1258
#[ inline]
1259
1259
pub const fn from_le_bytes ( bytes : [ u8 ; 4 ] ) -> Self {
@@ -1283,7 +1283,7 @@ impl f32 {
1283
1283
/// assert_eq!(value, 12.5);
1284
1284
/// ```
1285
1285
#[ stable( feature = "float_to_from_bytes" , since = "1.40.0" ) ]
1286
- #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "CURRENT_RUSTC_VERSION " ) ]
1286
+ #[ rustc_const_stable( feature = "const_float_bits_conv" , since = "1.83.0 " ) ]
1287
1287
#[ must_use]
1288
1288
#[ inline]
1289
1289
pub const fn from_ne_bytes ( bytes : [ u8 ; 4 ] ) -> Self {
0 commit comments