enum Exp<T> {
    Shifted(u32),
    NoShift(T),
}
Expand description

Representation of whether we shift the exponent into a u32, or modify it in place to save the shift operations.

Variants§

§

Shifted(u32)

The exponent has been shifted to a u32 and is LSB-aligned.

§

NoShift(T)

The exponent is in its natural position in integer repr.