Is there a defined constant in the C++ standard, for largest sequential integer that can be stored in a float without approximation?
(and also double, and long double?)
Is this directly related to the number of mantissa bits/significand bits?
If so, would the max sequential integer be exactly (1 << mantissaBitCount) - 1 ?
Is there a defined constant in the C++ standard, for the mantissa bit count for float, double, and long double?