@@ -154,56 +154,56 @@ pub mod consts {
154154#[ cfg( not( test) ) ]
155155impl f64 {
156156 /// The radix or base of the internal representation of `f64`.
157- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
157+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
158158 pub const RADIX : u32 = 2 ;
159159
160160 /// Number of significant digits in base 2.
161- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
161+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
162162 pub const MANTISSA_DIGITS : u32 = 53 ;
163163 /// Approximate number of significant digits in base 10.
164- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
164+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
165165 pub const DIGITS : u32 = 15 ;
166166
167167 /// [Machine epsilon] value for `f64`.
168168 ///
169169 /// This is the difference between `1.0` and the next larger representable number.
170170 ///
171171 /// [Machine epsilon]: https://en.wikipedia.org/wiki/Machine_epsilon
172- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
172+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
173173 pub const EPSILON : f64 = 2.2204460492503131e-16_f64 ;
174174
175175 /// Smallest finite `f64` value.
176- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
176+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
177177 pub const MIN : f64 = -1.7976931348623157e+308_f64 ;
178178 /// Smallest positive normal `f64` value.
179- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
179+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
180180 pub const MIN_POSITIVE : f64 = 2.2250738585072014e-308_f64 ;
181181 /// Largest finite `f64` value.
182- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
182+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
183183 pub const MAX : f64 = 1.7976931348623157e+308_f64 ;
184184
185185 /// One greater than the minimum possible normal power of 2 exponent.
186- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
186+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
187187 pub const MIN_EXP : i32 = -1021 ;
188188 /// Maximum possible power of 2 exponent.
189- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
189+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
190190 pub const MAX_EXP : i32 = 1024 ;
191191
192192 /// Minimum possible normal power of 10 exponent.
193- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
193+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
194194 pub const MIN_10_EXP : i32 = -307 ;
195195 /// Maximum possible power of 10 exponent.
196- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
196+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
197197 pub const MAX_10_EXP : i32 = 308 ;
198198
199199 /// Not a Number (NaN).
200- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
200+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
201201 pub const NAN : f64 = 0.0_f64 / 0.0_f64 ;
202202 /// Infinity (∞).
203- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
203+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
204204 pub const INFINITY : f64 = 1.0_f64 / 0.0_f64 ;
205205 /// Negative infinity (-∞).
206- #[ unstable ( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490 ") ]
206+ #[ stable ( feature = "assoc_int_consts" , since = "1.43.0 " ) ]
207207 pub const NEG_INFINITY : f64 = -1.0_f64 / 0.0_f64 ;
208208
209209 /// Returns `true` if this value is `NaN`.
0 commit comments