STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Types | Public Member Functions | Static Public Member Functions | List of all members
numeric_limits< _Bool > Class Template Reference
Inheritance diagram for numeric_limits< _Bool >:
_Num_int_base _Num_base

Public Types

typedef bool _Ty
 

Public Member Functions

 _STCONS (bool, is_modulo, false)
 
 _STCONS (bool, is_signed, false)
 
 _STCONS (int, digits, 1)
 
 _STCONS (int, digits10, 0)
 
- Public Member Functions inherited from _Num_int_base
 _STCONS (bool, is_bounded, true)
 
 _STCONS (bool, is_exact, true)
 
 _STCONS (bool, is_integer, true)
 
 _STCONS (bool, is_modulo, true)
 
 _STCONS (bool, is_specialized, true)
 
 _STCONS (int, radix, 2)
 
- Public Member Functions inherited from _Num_base
 _STCONS (float_denorm_style, has_denorm, denorm_absent)
 
 _STCONS (bool, has_denorm_loss, false)
 
 _STCONS (bool, has_infinity, false)
 
 _STCONS (bool, has_quiet_NaN, false)
 
 _STCONS (bool, has_signaling_NaN, false)
 
 _STCONS (bool, is_bounded, false)
 
 _STCONS (bool, is_exact, false)
 
 _STCONS (bool, is_iec559, false)
 
 _STCONS (bool, is_integer, false)
 
 _STCONS (bool, is_modulo, false)
 
 _STCONS (bool, is_signed, false)
 
 _STCONS (bool, is_specialized, false)
 
 _STCONS (bool, tinyness_before, false)
 
 _STCONS (bool, traps, false)
 
 _STCONS (float_round_style, round_style, round_toward_zero)
 
 _STCONS (int, digits, 0)
 
 _STCONS (int, digits10, 0)
 
 _STCONS (int, max_digits10, 0)
 
 _STCONS (int, max_exponent, 0)
 
 _STCONS (int, max_exponent10, 0)
 
 _STCONS (int, min_exponent, 0)
 
 _STCONS (int, min_exponent10, 0)
 
 _STCONS (int, radix, 0)
 

Static Public Member Functions

static _Ty() min () _THROW0()
 
static _Ty() max () _THROW0()
 
static _Ty lowest () _THROW0()
 
static _Ty epsilon () _THROW0()
 
static _Ty round_error () _THROW0()
 
static _Ty denorm_min () _THROW0()
 
static _Ty infinity () _THROW0()
 
static _Ty quiet_NaN () _THROW0()
 
static _Ty signaling_NaN () _THROW0()
 

Member Typedef Documentation

typedef bool numeric_limits< _Bool >::_Ty

Member Function Documentation

numeric_limits< _Bool >::_STCONS ( bool  ,
is_modulo  ,
false   
)
numeric_limits< _Bool >::_STCONS ( bool  ,
is_signed  ,
false   
)
numeric_limits< _Bool >::_STCONS ( int  ,
digits  ,
 
)
numeric_limits< _Bool >::_STCONS ( int  ,
digits10  ,
 
)
static _Ty numeric_limits< _Bool >::denorm_min ( )
inlinestatic
331  { // return minimum denormalized value
332  return (0);
333  }
static _Ty numeric_limits< _Bool >::epsilon ( )
inlinestatic
321  { // return smallest effective increment from 1.0
322  return (0);
323  }
static _Ty numeric_limits< _Bool >::infinity ( )
inlinestatic
336  { // return positive infinity
337  return (0);
338  }
static _Ty numeric_limits< _Bool >::lowest ( )
inlinestatic
316  { // return most negative value
317  return ((min)());
318  }
static _Ty() min() _THROW0()
Definition: limits:305
static _Ty() numeric_limits< _Bool >::max ( )
inlinestatic
311  { // return maximum value
312  return (true);
313  }
static _Ty() numeric_limits< _Bool >::min ( )
inlinestatic
306  { // return minimum value
307  return (false);
308  }
static _Ty numeric_limits< _Bool >::quiet_NaN ( )
inlinestatic
341  { // return non-signaling NaN
342  return (0);
343  }
static _Ty numeric_limits< _Bool >::round_error ( )
inlinestatic
326  { // return largest rounding error
327  return (0);
328  }
static _Ty numeric_limits< _Bool >::signaling_NaN ( )
inlinestatic
346  { // return signaling NaN
347  return (0);
348  }

The documentation for this class was generated from the following file: