Struct rustc_apfloat::ieee::SingleS[][src]

pub struct SingleS;

Trait Implementations

impl Semantics for SingleS
[src]

BITS: usize = 32

Total number of bits in the in-memory format.

PRECISION: usize = 32 - 1 - 8 + 1

Number of bits in the significand. This includes the integer bit.

MAX_EXP: ExpInt = (1 << 8 - 1) - 1

The largest E such that 2E is representable; this matches the definition of IEEE 754. Read more

MIN_EXP: ExpInt = -<Self>::MAX_EXP + 1

The smallest E such that 2E is a normalized number; this matches the definition of IEEE 754. Read more

QNAN_BIT: usize = <Self>::PRECISION - 2

The significand bit that marks NaN as quiet.

QNAN_SIGNIFICAND: u128 = 1 << <Self>::QNAN_BIT

The significand bitpattern to mark a NaN as quiet. NOTE: for X87DoubleExtended we need to set two bits instead of 2. Read more

Auto Trait Implementations

impl Send for SingleS

impl Sync for SingleS