This commit is contained in:
Quaternions 2023-10-13 16:28:25 -07:00
parent bf6f37fa00
commit 80b1d25a13

View File

@ -141,7 +141,7 @@ fn integer_decode_f64(f: f64) -> (u64, i16, i8) {
(mantissa, exponent, sign) (mantissa, exponent, sign)
} }
#[derive(Debug)] #[derive(Debug)]
enum Ratio64TryFromFloatError{ pub enum Ratio64TryFromFloatError{
Nan, Nan,
Infinite, Infinite,
Subnormal, Subnormal,
@ -409,7 +409,7 @@ impl From<Ratio64> for Planar64{
} }
} }
#[derive(Debug)] #[derive(Debug)]
enum Planar64TryFromFloatError{ pub enum Planar64TryFromFloatError{
Nan, Nan,
Infinite, Infinite,
Subnormal, Subnormal,