◆ Minimum()
3310 {
3311 return std::numeric_limits<T>::has_infinity ? -std::numeric_limits<T>::infinity()
3312 : std::numeric_limits<T>::lowest();
3313 }
◆ Maximum()
3314 {
3315 return std::numeric_limits<T>::has_infinity ? std::numeric_limits<T>::infinity()
3316 : std::numeric_limits<T>::
max();
3317 }
◆ IsSigned()
3318 {
3319 return std::is_signed<T>::value;
3320 }
◆ IsIntegral()
3321 {
3322 return std::is_integral<T>::value || std::is_enum<T>::value;
3323 }
◆ Digits() [1/10]
3366 {
3367 return 3;
3368}
◆ Digits() [2/10]
3371 {
3372 return 5;
3373}
◆ Digits() [3/10]
3376 {
3377 return 10;
3378}
◆ Digits() [4/10]
3381 {
3382 return 19;
3383}
◆ Digits() [5/10]
3386 {
3387 return 3;
3388}
◆ Digits() [6/10]
3391 {
3392 return 5;
3393}
◆ Digits() [7/10]
3396 {
3397 return 10;
3398}
◆ Digits() [8/10]
3401 {
3402 return 20;
3403}
◆ Digits() [9/10]
3406 {
3407 return 127;
3408}
◆ Digits() [10/10]
3411 {
3412 return 250;
3413}
The documentation for this struct was generated from the following file: