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

Public Types

typedef wchar_t _Ty
 

Public Member Functions

 _STCONS (bool, is_signed, WCHAR_MIN!=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()
 

Public Attributes

 WCHAR_MIN = 0 ? 1 : 0))
 

Member Typedef Documentation

Member Function Documentation

numeric_limits< wchar_t >::_STCONS ( bool  ,
is_signed  ,
WCHAR_MIN!  = 0 
)
static _Ty numeric_limits< wchar_t >::denorm_min ( )
inlinestatic
272  { // return minimum denormalized value
273  return (0);
274  }
static _Ty numeric_limits< wchar_t >::epsilon ( )
inlinestatic
262  { // return smallest effective increment from 1.0
263  return (0);
264  }
static _Ty numeric_limits< wchar_t >::infinity ( )
inlinestatic
277  { // return positive infinity
278  return (0);
279  }
static _Ty numeric_limits< wchar_t >::lowest ( )
inlinestatic
257  { // return most negative value
258  return ((min)());
259  }
static _Ty() min() _THROW0()
Definition: limits:246
static _Ty() numeric_limits< wchar_t >::max ( )
inlinestatic
252  { // return maximum value
253  return ((_Ty)WCHAR_MAX);
254  }
wchar_t _Ty
Definition: limits:244
#define WCHAR_MAX
Definition: stdint.h:121
static _Ty() numeric_limits< wchar_t >::min ( )
inlinestatic
247  { // return minimum value
248  return ((_Ty)WCHAR_MIN);
249  }
wchar_t _Ty
Definition: limits:244
WCHAR_MIN
Definition: limits:293
static _Ty numeric_limits< wchar_t >::quiet_NaN ( )
inlinestatic
282  { // return non-signaling NaN
283  return (0);
284  }
static _Ty numeric_limits< wchar_t >::round_error ( )
inlinestatic
267  { // return largest rounding error
268  return (0);
269  }
static _Ty numeric_limits< wchar_t >::signaling_NaN ( )
inlinestatic
287  { // return signaling NaN
288  return (0);
289  }

Member Data Documentation

numeric_limits< wchar_t >::WCHAR_MIN = 0 ? 1 : 0))

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