Skip to content

Commit a1238fc

Browse files
committed
Implement exp2
1 parent 34597a3 commit a1238fc

File tree

4 files changed

+386
-3
lines changed

4 files changed

+386
-3
lines changed

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,6 @@ pub trait F64Ext: private::Sealed {
385385

386386
fn exp(self) -> Self;
387387

388-
#[cfg(todo)]
389388
fn exp2(self) -> Self;
390389

391390
fn ln(self) -> Self;
@@ -530,7 +529,6 @@ impl F64Ext for f64 {
530529
exp(self)
531530
}
532531

533-
#[cfg(todo)]
534532
#[inline]
535533
fn exp2(self) -> Self {
536534
exp2(self)

0 commit comments

Comments
 (0)