We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44cb46f commit 3515b49Copy full SHA for 3515b49
src/libcore/num/f32.rs
@@ -464,9 +464,8 @@ impl Hyperbolic for f32 {
464
#[inline(always)]
465
fn asinh(&self) -> f32 {
466
match *self {
467
- infinity => infinity,
468
neg_infinity => neg_infinity,
469
- x => (x + ((x * x) + 1.0).sqrt()).ln(),
+ x => (x + ((x * x) + 1.0).sqrt()).ln(),
470
}
471
472
src/libcore/num/f64.rs
@@ -476,9 +476,8 @@ impl Hyperbolic for f64 {
476
477
fn asinh(&self) -> f64 {
478
479
480
481
482
483
484
0 commit comments