Skip to content

Commit 556fb02

Browse files
author
Clar Charr
committed
Move Bits constraints to RawFloat::RawBits
1 parent a2cdeb5 commit 556fb02

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

src/libcore/num/dec2flt/rawfp.rs

+19-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
//! take the universally-correct slow path (Algorithm M) for very small and very large numbers.
2929
//! That algorithm needs only next_float() which does handle subnormals and zeros.
3030
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};
3333
use fmt::{Debug, LowerExp};
3434
use num::diy_float::Fp;
3535
use num::FpCategory::{Infinite, Zero, Subnormal, Normal, Nan};
@@ -55,13 +55,24 @@ impl Unpacked {
5555
///
5656
/// Should **never ever** be implemented for other types or be used outside the dec2flt module.
5757
/// 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>
6068
{
6169
const INFINITY: Self;
6270
const NAN: Self;
6371
const ZERO: Self;
6472

73+
/// Same as `Float::Bits` with extra traits.
74+
type RawBits: Add<Output = Self::RawBits> + From<u8> + TryFrom<u64>;
75+
6576
/// Returns the mantissa, exponent and sign as integers.
6677
fn integer_decode(self) -> (u64, i16, i8);
6778

@@ -142,6 +153,8 @@ macro_rules! other_constants {
142153
}
143154

144155
impl RawFloat for f32 {
156+
type RawBits = u32;
157+
145158
const SIG_BITS: u8 = 24;
146159
const EXP_BITS: u8 = 8;
147160
const CEIL_LOG5_OF_MAX_SIG: i16 = 11;
@@ -183,6 +196,8 @@ impl RawFloat for f32 {
183196

184197

185198
impl RawFloat for f64 {
199+
type RawBits = u64;
200+
186201
const SIG_BITS: u8 = 53;
187202
const EXP_BITS: u8 = 11;
188203
const CEIL_LOG5_OF_MAX_SIG: i16 = 23;

src/libcore/num/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2874,7 +2874,7 @@ pub enum FpCategory {
28742874
pub trait Float: Sized {
28752875
/// Type used by `to_bits` and `from_bits`.
28762876
#[stable(feature = "core_float_bits", since = "1.24.0")]
2877-
type Bits: ops::Add<Output = Self::Bits> + From<u8> + TryFrom<u64>;
2877+
type Bits;
28782878

28792879
/// Returns `true` if this value is NaN and false otherwise.
28802880
#[stable(feature = "core", since = "1.6.0")]

0 commit comments

Comments
 (0)