Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
numeric_limits::max
static T ``max``() throw();
The function returns the maximum finite value for the type (which is INT_MAX
for type int and FLT_MAX
for type float). The return value is meaningful if is_bounded
is true.
See the related numeric_limits sample program.