Skip to content

Commit 0d683a1

Browse files
committed
Remove deprecated type aliases.
1 parent 96672a8 commit 0d683a1

File tree

2 files changed

+0
-540
lines changed

2 files changed

+0
-540
lines changed

src/lib.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,6 @@ use num_traits::Float;
2323
#[cfg(not(feature = "std"))]
2424
use num_traits::float::FloatCore as Float;
2525

26-
/// A wrapper around Floats providing an implementation of Ord and Hash.
27-
///
28-
/// A NaN value cannot be stored in this type.
29-
#[deprecated(since = "0.6.0", note = "renamed to `NotNan`")]
30-
pub type NotNaN<T> = NotNan<T>;
31-
32-
/// An error indicating an attempt to construct NotNan from a NaN
33-
#[deprecated(since = "0.6.0", note = "renamed to `FloatIsNan`")]
34-
pub type FloatIsNaN = FloatIsNan;
35-
3626
// masks for the parts of the IEEE 754 float
3727
const SIGN_MASK: u64 = 0x8000000000000000u64;
3828
const EXP_MASK: u64 = 0x7ff0000000000000u64;

0 commit comments

Comments
 (0)