numeric_limits::is_exact

numeric_limits::is_exact

static const bool ``is_exact`` = false;

The member stores true for a type that has exact representations for all its values (which is the case for all predefined integer types). A fixed-point or rational representation is also considered exact, but not a floating-point representation.

See the related numeric_limits sample program.