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 96672a8 commit 0d683a1Copy full SHA for 0d683a1
src/lib.rs
@@ -23,16 +23,6 @@ use num_traits::Float;
23
#[cfg(not(feature = "std"))]
24
use num_traits::float::FloatCore as Float;
25
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
36
// masks for the parts of the IEEE 754 float
37
const SIGN_MASK: u64 = 0x8000000000000000u64;
38
const EXP_MASK: u64 = 0x7ff0000000000000u64;
0 commit comments