You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto num_exp {num.biased_exponent()};
auto num_sig {num.full_significand()};
detail::normalize<T>(num_sig, num_exp);
This involves decoding the combination field twice. We should be able to combine these into a single operation called to_components that returns the already existing structure of components.
The text was updated successfully, but these errors were encountered:
For example in frexp10 we have this:
This involves decoding the combination field twice. We should be able to combine these into a single operation called
to_components
that returns the already existing structure of components.The text was updated successfully, but these errors were encountered: