@@ -45,6 +45,7 @@ pub const RADIX: u32 = f32::RADIX;
45
45
/// ```
46
46
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
47
47
pub const MANTISSA_DIGITS : u32 = f32:: MANTISSA_DIGITS ;
48
+
48
49
/// Approximate number of significant digits in base 10.
49
50
/// Use [`f32::DIGITS`](../../std/primitive.f32.html#associatedconstant.DIGITS) instead.
50
51
///
@@ -93,6 +94,7 @@ pub const EPSILON: f32 = f32::EPSILON;
93
94
/// ```
94
95
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
95
96
pub const MIN : f32 = f32:: MIN ;
97
+
96
98
/// Smallest positive normal `f32` value.
97
99
/// Use [`f32::MIN_POSITIVE`](../../std/primitive.f32.html#associatedconstant.MIN_POSITIVE) instead.
98
100
///
@@ -107,6 +109,7 @@ pub const MIN: f32 = f32::MIN;
107
109
/// ```
108
110
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
109
111
pub const MIN_POSITIVE : f32 = f32:: MIN_POSITIVE ;
112
+
110
113
/// Largest finite `f32` value.
111
114
/// Use [`f32::MAX`](../../std/primitive.f32.html#associatedconstant.MAX) instead.
112
115
///
@@ -136,6 +139,7 @@ pub const MAX: f32 = f32::MAX;
136
139
/// ```
137
140
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
138
141
pub const MIN_EXP : i32 = f32:: MIN_EXP ;
142
+
139
143
/// Maximum possible power of 2 exponent.
140
144
/// Use [`f32::MAX_EXP`](../../std/primitive.f32.html#associatedconstant.MAX_EXP) instead.
141
145
///
@@ -165,6 +169,7 @@ pub const MAX_EXP: i32 = f32::MAX_EXP;
165
169
/// ```
166
170
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
167
171
pub const MIN_10_EXP : i32 = f32:: MIN_10_EXP ;
172
+
168
173
/// Maximum possible power of 10 exponent.
169
174
/// Use [`f32::MAX_10_EXP`](../../std/primitive.f32.html#associatedconstant.MAX_10_EXP) instead.
170
175
///
@@ -194,6 +199,7 @@ pub const MAX_10_EXP: i32 = f32::MAX_10_EXP;
194
199
/// ```
195
200
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
196
201
pub const NAN : f32 = f32:: NAN ;
202
+
197
203
/// Infinity (∞).
198
204
/// Use [`f32::INFINITY`](../../std/primitive.f32.html#associatedconstant.INFINITY) instead.
199
205
///
@@ -208,6 +214,7 @@ pub const NAN: f32 = f32::NAN;
208
214
/// ```
209
215
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
210
216
pub const INFINITY : f32 = f32:: INFINITY ;
217
+
211
218
/// Negative infinity (−∞).
212
219
/// Use [`f32::NEG_INFINITY`](../../std/primitive.f32.html#associatedconstant.NEG_INFINITY) instead.
213
220
///
0 commit comments