struct Norm<F: Float> {
m: F::Int,
e: i32,
neg: bool,
}
Expand description
Representation of F
that has handled subnormals.
Fields§
§m: F::Int
Normalized significand with one guard bit, unsigned.
e: i32
Exponent of the mantissa such that m * 2^e = x
. Accounts for the shift in the mantissa
and the guard bit; that is, 1.0 will normalize as m = 1 << 53
and e = -53
.
neg: bool