Skip to content

Commit 90f3a6f

Browse files
committed
Auto merge of #104153 - tspiteri:doc-float-constants, r=workingjubilee
doc: expand description for f32 and f64 associated constants This explains the meaning of some of the floating-point associated constants.
2 parents 5c3a0e9 + c953b6c commit 90f3a6f

File tree

2 files changed

+80
-4
lines changed

2 files changed

+80
-4
lines changed

library/core/src/num/f32.rs

+40-2
Original file line numberDiff line numberDiff line change
@@ -377,38 +377,76 @@ impl f32 {
377377
pub const MANTISSA_DIGITS: u32 = 24;
378378

379379
/// Approximate number of significant digits in base 10.
380+
///
381+
/// This is the maximum <i>x</i> such that any decimal number with <i>x</i>
382+
/// significant digits can be converted to `f32` and back without loss.
383+
///
384+
/// Equal to floor(log<sub>10</sub>&nbsp;2<sup>[`MANTISSA_DIGITS`]&nbsp;&minus;&nbsp;1</sup>).
385+
///
386+
/// [`MANTISSA_DIGITS`]: f32::MANTISSA_DIGITS
380387
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
381388
pub const DIGITS: u32 = 6;
382389

383390
/// [Machine epsilon] value for `f32`.
384391
///
385392
/// This is the difference between `1.0` and the next larger representable number.
386393
///
394+
/// Equal to 2<sup>1&nbsp;&minus;&nbsp;[`MANTISSA_DIGITS`]</sup>.
395+
///
387396
/// [Machine epsilon]: https://en.wikipedia.org/wiki/Machine_epsilon
397+
/// [`MANTISSA_DIGITS`]: f32::MANTISSA_DIGITS
388398
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
389399
pub const EPSILON: f32 = 1.19209290e-07_f32;
390400

391401
/// Smallest finite `f32` value.
402+
///
403+
/// Equal to &minus;[`MAX`].
404+
///
405+
/// [`MAX`]: f32::MAX
392406
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
393407
pub const MIN: f32 = -3.40282347e+38_f32;
394408
/// Smallest positive normal `f32` value.
409+
///
410+
/// Equal to 2<sup>[`MIN_EXP`]&nbsp;&minus;&nbsp;1</sup>.
411+
///
412+
/// [`MIN_EXP`]: f32::MIN_EXP
395413
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
396414
pub const MIN_POSITIVE: f32 = 1.17549435e-38_f32;
397415
/// Largest finite `f32` value.
416+
///
417+
/// Equal to
418+
/// (1&nbsp;&minus;&nbsp;2<sup>&minus;[`MANTISSA_DIGITS`]</sup>)&nbsp;2<sup>[`MAX_EXP`]</sup>.
419+
///
420+
/// [`MANTISSA_DIGITS`]: f32::MANTISSA_DIGITS
421+
/// [`MAX_EXP`]: f32::MAX_EXP
398422
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
399423
pub const MAX: f32 = 3.40282347e+38_f32;
400424

401425
/// One greater than the minimum possible normal power of 2 exponent.
426+
///
427+
/// If <i>x</i>&nbsp;=&nbsp;`MIN_EXP`, then normal numbers
428+
/// ≥&nbsp;0.5&nbsp;×&nbsp;2<sup><i>x</i></sup>.
402429
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
403430
pub const MIN_EXP: i32 = -125;
404431
/// Maximum possible power of 2 exponent.
432+
///
433+
/// If <i>x</i>&nbsp;=&nbsp;`MAX_EXP`, then normal numbers
434+
/// &lt;&nbsp;1&nbsp;×&nbsp;2<sup><i>x</i></sup>.
405435
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
406436
pub const MAX_EXP: i32 = 128;
407437

408-
/// Minimum possible normal power of 10 exponent.
438+
/// Minimum <i>x</i> for which 10<sup><i>x</i></sup> is normal.
439+
///
440+
/// Equal to ceil(log<sub>10</sub>&nbsp;[`MIN_POSITIVE`]).
441+
///
442+
/// [`MIN_POSITIVE`]: f32::MIN_POSITIVE
409443
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
410444
pub const MIN_10_EXP: i32 = -37;
411-
/// Maximum possible power of 10 exponent.
445+
/// Maximum <i>x</i> for which 10<sup><i>x</i></sup> is normal.
446+
///
447+
/// Equal to floor(log<sub>10</sub>&nbsp;[`MAX`]).
448+
///
449+
/// [`MAX`]: f32::MAX
412450
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
413451
pub const MAX_10_EXP: i32 = 38;
414452

library/core/src/num/f64.rs

+40-2
Original file line numberDiff line numberDiff line change
@@ -376,38 +376,76 @@ impl f64 {
376376
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
377377
pub const MANTISSA_DIGITS: u32 = 53;
378378
/// Approximate number of significant digits in base 10.
379+
///
380+
/// This is the maximum <i>x</i> such that any decimal number with <i>x</i>
381+
/// significant digits can be converted to `f64` and back without loss.
382+
///
383+
/// Equal to floor(log<sub>10</sub>&nbsp;2<sup>[`MANTISSA_DIGITS`]&nbsp;&minus;&nbsp;1</sup>).
384+
///
385+
/// [`MANTISSA_DIGITS`]: f64::MANTISSA_DIGITS
379386
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
380387
pub const DIGITS: u32 = 15;
381388

382389
/// [Machine epsilon] value for `f64`.
383390
///
384391
/// This is the difference between `1.0` and the next larger representable number.
385392
///
393+
/// Equal to 2<sup>1&nbsp;&minus;&nbsp;[`MANTISSA_DIGITS`]</sup>.
394+
///
386395
/// [Machine epsilon]: https://en.wikipedia.org/wiki/Machine_epsilon
396+
/// [`MANTISSA_DIGITS`]: f64::MANTISSA_DIGITS
387397
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
388398
pub const EPSILON: f64 = 2.2204460492503131e-16_f64;
389399

390400
/// Smallest finite `f64` value.
401+
///
402+
/// Equal to &minus;[`MAX`].
403+
///
404+
/// [`MAX`]: f64::MAX
391405
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
392406
pub const MIN: f64 = -1.7976931348623157e+308_f64;
393407
/// Smallest positive normal `f64` value.
408+
///
409+
/// Equal to 2<sup>[`MIN_EXP`]&nbsp;&minus;&nbsp;1</sup>.
410+
///
411+
/// [`MIN_EXP`]: f64::MIN_EXP
394412
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
395413
pub const MIN_POSITIVE: f64 = 2.2250738585072014e-308_f64;
396414
/// Largest finite `f64` value.
415+
///
416+
/// Equal to
417+
/// (1&nbsp;&minus;&nbsp;2<sup>&minus;[`MANTISSA_DIGITS`]</sup>)&nbsp;2<sup>[`MAX_EXP`]</sup>.
418+
///
419+
/// [`MANTISSA_DIGITS`]: f64::MANTISSA_DIGITS
420+
/// [`MAX_EXP`]: f64::MAX_EXP
397421
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
398422
pub const MAX: f64 = 1.7976931348623157e+308_f64;
399423

400424
/// One greater than the minimum possible normal power of 2 exponent.
425+
///
426+
/// If <i>x</i>&nbsp;=&nbsp;`MIN_EXP`, then normal numbers
427+
/// ≥&nbsp;0.5&nbsp;×&nbsp;2<sup><i>x</i></sup>.
401428
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
402429
pub const MIN_EXP: i32 = -1021;
403430
/// Maximum possible power of 2 exponent.
431+
///
432+
/// If <i>x</i>&nbsp;=&nbsp;`MAX_EXP`, then normal numbers
433+
/// &lt;&nbsp;1&nbsp;×&nbsp;2<sup><i>x</i></sup>.
404434
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
405435
pub const MAX_EXP: i32 = 1024;
406436

407-
/// Minimum possible normal power of 10 exponent.
437+
/// Minimum <i>x</i> for which 10<sup><i>x</i></sup> is normal.
438+
///
439+
/// Equal to ceil(log<sub>10</sub>&nbsp;[`MIN_POSITIVE`]).
440+
///
441+
/// [`MIN_POSITIVE`]: f64::MIN_POSITIVE
408442
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
409443
pub const MIN_10_EXP: i32 = -307;
410-
/// Maximum possible power of 10 exponent.
444+
/// Maximum <i>x</i> for which 10<sup><i>x</i></sup> is normal.
445+
///
446+
/// Equal to floor(log<sub>10</sub>&nbsp;[`MAX`]).
447+
///
448+
/// [`MAX`]: f64::MAX
411449
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
412450
pub const MAX_10_EXP: i32 = 308;
413451

0 commit comments

Comments
 (0)