static T min() throw();
The function returns the minimum normalized value for the type (which is INT_MIN for type int and FLT_MIN for type
float). The return value is meaningful if is_bounded is true or is_signed is false.
See the related numeric_limits sample program.