@@ -45,6 +45,7 @@ pub const RADIX: u32 = f32::RADIX;
4545/// ```
4646#[ stable( feature = "rust1" , since = "1.0.0" ) ]
4747pub const MANTISSA_DIGITS : u32 = f32:: MANTISSA_DIGITS ;
48+
4849/// Approximate number of significant digits in base 10.
4950/// Use [`f32::DIGITS`](../../std/primitive.f32.html#associatedconstant.DIGITS) instead.
5051///
@@ -93,6 +94,7 @@ pub const EPSILON: f32 = f32::EPSILON;
9394/// ```
9495#[ stable( feature = "rust1" , since = "1.0.0" ) ]
9596pub const MIN : f32 = f32:: MIN ;
97+
9698/// Smallest positive normal `f32` value.
9799/// Use [`f32::MIN_POSITIVE`](../../std/primitive.f32.html#associatedconstant.MIN_POSITIVE) instead.
98100///
@@ -107,6 +109,7 @@ pub const MIN: f32 = f32::MIN;
107109/// ```
108110#[ stable( feature = "rust1" , since = "1.0.0" ) ]
109111pub const MIN_POSITIVE : f32 = f32:: MIN_POSITIVE ;
112+
110113/// Largest finite `f32` value.
111114/// Use [`f32::MAX`](../../std/primitive.f32.html#associatedconstant.MAX) instead.
112115///
@@ -136,6 +139,7 @@ pub const MAX: f32 = f32::MAX;
136139/// ```
137140#[ stable( feature = "rust1" , since = "1.0.0" ) ]
138141pub const MIN_EXP : i32 = f32:: MIN_EXP ;
142+
139143/// Maximum possible power of 2 exponent.
140144/// Use [`f32::MAX_EXP`](../../std/primitive.f32.html#associatedconstant.MAX_EXP) instead.
141145///
@@ -165,6 +169,7 @@ pub const MAX_EXP: i32 = f32::MAX_EXP;
165169/// ```
166170#[ stable( feature = "rust1" , since = "1.0.0" ) ]
167171pub const MIN_10_EXP : i32 = f32:: MIN_10_EXP ;
172+
168173/// Maximum possible power of 10 exponent.
169174/// Use [`f32::MAX_10_EXP`](../../std/primitive.f32.html#associatedconstant.MAX_10_EXP) instead.
170175///
@@ -194,6 +199,7 @@ pub const MAX_10_EXP: i32 = f32::MAX_10_EXP;
194199/// ```
195200#[ stable( feature = "rust1" , since = "1.0.0" ) ]
196201pub const NAN : f32 = f32:: NAN ;
202+
197203/// Infinity (∞).
198204/// Use [`f32::INFINITY`](../../std/primitive.f32.html#associatedconstant.INFINITY) instead.
199205///
@@ -208,6 +214,7 @@ pub const NAN: f32 = f32::NAN;
208214/// ```
209215#[ stable( feature = "rust1" , since = "1.0.0" ) ]
210216pub const INFINITY : f32 = f32:: INFINITY ;
217+
211218/// Negative infinity (−∞).
212219/// Use [`f32::NEG_INFINITY`](../../std/primitive.f32.html#associatedconstant.NEG_INFINITY) instead.
213220///
0 commit comments