@@ -424,6 +424,8 @@ impl f32 {
424
424
425
425
/// Returns the natural logarithm of the number.
426
426
///
427
+ /// This returns NaN when the number is negative, and negative infinity when number is zero.
428
+ ///
427
429
/// # Unspecified precision
428
430
///
429
431
/// The precision of this function is non-deterministic. This means it varies by platform, Rust version, and
@@ -441,6 +443,12 @@ impl f32 {
441
443
///
442
444
/// assert!(abs_difference <= f32::EPSILON);
443
445
/// ```
446
+ ///
447
+ /// Non-positive values:
448
+ /// ```
449
+ /// assert_eq!(0_f32.ln(), f32::NEG_INFINITY);
450
+ /// assert!((-42_f32).ln().is_nan());
451
+ /// ```
444
452
#[ rustc_allow_incoherent_impl]
445
453
#[ must_use = "method returns a new number and does not mutate the original value" ]
446
454
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -451,6 +459,8 @@ impl f32 {
451
459
452
460
/// Returns the logarithm of the number with respect to an arbitrary base.
453
461
///
462
+ /// This returns NaN when the number is negative, and negative infinity when number is zero.
463
+ ///
454
464
/// The result might not be correctly rounded owing to implementation details;
455
465
/// `self.log2()` can produce more accurate results for base 2, and
456
466
/// `self.log10()` can produce more accurate results for base 10.
@@ -470,6 +480,12 @@ impl f32 {
470
480
///
471
481
/// assert!(abs_difference <= f32::EPSILON);
472
482
/// ```
483
+ ///
484
+ /// Non-positive values:
485
+ /// ```
486
+ /// assert_eq!(0_f32.log(10.0), f32::NEG_INFINITY);
487
+ /// assert!((-42_f32).log(10.0).is_nan());
488
+ /// ```
473
489
#[ rustc_allow_incoherent_impl]
474
490
#[ must_use = "method returns a new number and does not mutate the original value" ]
475
491
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -480,6 +496,8 @@ impl f32 {
480
496
481
497
/// Returns the base 2 logarithm of the number.
482
498
///
499
+ /// This returns NaN when the number is negative, and negative infinity when number is zero.
500
+ ///
483
501
/// # Unspecified precision
484
502
///
485
503
/// The precision of this function is non-deterministic. This means it varies by platform, Rust version, and
@@ -495,6 +513,12 @@ impl f32 {
495
513
///
496
514
/// assert!(abs_difference <= f32::EPSILON);
497
515
/// ```
516
+ ///
517
+ /// Non-positive values:
518
+ /// ```
519
+ /// assert_eq!(0_f32.log2(), f32::NEG_INFINITY);
520
+ /// assert!((-42_f32).log2().is_nan());
521
+ /// ```
498
522
#[ rustc_allow_incoherent_impl]
499
523
#[ must_use = "method returns a new number and does not mutate the original value" ]
500
524
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -505,6 +529,8 @@ impl f32 {
505
529
506
530
/// Returns the base 10 logarithm of the number.
507
531
///
532
+ /// This returns NaN when the number is negative, and negative infinity when number is zero.
533
+ ///
508
534
/// # Unspecified precision
509
535
///
510
536
/// The precision of this function is non-deterministic. This means it varies by platform, Rust version, and
@@ -520,6 +546,12 @@ impl f32 {
520
546
///
521
547
/// assert!(abs_difference <= f32::EPSILON);
522
548
/// ```
549
+ ///
550
+ /// Non-positive values:
551
+ /// ```
552
+ /// assert_eq!(0_f32.log10(), f32::NEG_INFINITY);
553
+ /// assert!((-42_f32).log10().is_nan());
554
+ /// ```
523
555
#[ rustc_allow_incoherent_impl]
524
556
#[ must_use = "method returns a new number and does not mutate the original value" ]
525
557
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -893,6 +925,8 @@ impl f32 {
893
925
/// Returns `ln(1+n)` (natural logarithm) more accurately than if
894
926
/// the operations were performed separately.
895
927
///
928
+ /// This returns NaN when `n < -1.0`, and negative infinity when `n == -1.0`.
929
+ ///
896
930
/// # Unspecified precision
897
931
///
898
932
/// The precision of this function is non-deterministic. This means it varies by platform, Rust version, and
@@ -911,6 +945,12 @@ impl f32 {
911
945
///
912
946
/// assert!(abs_difference < 1e-10);
913
947
/// ```
948
+ ///
949
+ /// Out-of-range values:
950
+ /// ```
951
+ /// assert_eq!((-1.0_f32).ln_1p(), f32::NEG_INFINITY);
952
+ /// assert!((-2.0_f32).ln_1p().is_nan());
953
+ /// ```
914
954
#[ doc( alias = "log1p" ) ]
915
955
#[ rustc_allow_incoherent_impl]
916
956
#[ must_use = "method returns a new number and does not mutate the original value" ]
0 commit comments