28
28
//! take the universally-correct slow path (Algorithm M) for very small and very large numbers.
29
29
//! That algorithm needs only next_float() which does handle subnormals and zeros.
30
30
use cmp:: Ordering :: { Less , Equal , Greater } ;
31
- use convert:: TryInto ;
32
- use ops:: { Mul , Div , Neg } ;
31
+ use convert:: { TryFrom , TryInto } ;
32
+ use ops:: { Add , Mul , Div , Neg } ;
33
33
use fmt:: { Debug , LowerExp } ;
34
34
use num:: diy_float:: Fp ;
35
35
use num:: FpCategory :: { Infinite , Zero , Subnormal , Normal , Nan } ;
@@ -55,13 +55,24 @@ impl Unpacked {
55
55
///
56
56
/// Should **never ever** be implemented for other types or be used outside the dec2flt module.
57
57
/// Inherits from `Float` because there is some overlap, but all the reused methods are trivial.
58
- pub trait RawFloat : Float + Copy + Debug + LowerExp
59
- + Mul < Output =Self > + Div < Output =Self > + Neg < Output =Self >
58
+ pub trait RawFloat
59
+ : Float
60
+ + Copy
61
+ + Debug
62
+ + LowerExp
63
+ + Mul < Output =Self >
64
+ + Div < Output =Self >
65
+ + Neg < Output =Self >
66
+ where
67
+ Self : Float < Bits = <Self as RawFloat >:: RawBits >
60
68
{
61
69
const INFINITY : Self ;
62
70
const NAN : Self ;
63
71
const ZERO : Self ;
64
72
73
+ /// Same as `Float::Bits` with extra traits.
74
+ type RawBits : Add < Output = Self :: RawBits > + From < u8 > + TryFrom < u64 > ;
75
+
65
76
/// Returns the mantissa, exponent and sign as integers.
66
77
fn integer_decode ( self ) -> ( u64 , i16 , i8 ) ;
67
78
@@ -142,6 +153,8 @@ macro_rules! other_constants {
142
153
}
143
154
144
155
impl RawFloat for f32 {
156
+ type RawBits = u32 ;
157
+
145
158
const SIG_BITS : u8 = 24 ;
146
159
const EXP_BITS : u8 = 8 ;
147
160
const CEIL_LOG5_OF_MAX_SIG : i16 = 11 ;
@@ -183,6 +196,8 @@ impl RawFloat for f32 {
183
196
184
197
185
198
impl RawFloat for f64 {
199
+ type RawBits = u64 ;
200
+
186
201
const SIG_BITS : u8 = 53 ;
187
202
const EXP_BITS : u8 = 11 ;
188
203
const CEIL_LOG5_OF_MAX_SIG : i16 = 23 ;
0 commit comments