![]() |
Arene Base
Fundamental Utilities For Safety Critical C++
|
|
externconstexpr |
Helper variable used to determine if an integer value is negative.
| Type | integer type |
| Value | integer value to check |
The primary template is always false.
|
externconstexpr |
Helper variable used to used to determine if an integer value is negative.
| Type | integer type |
| Value | integer value to check |
Template specialization for signed integer types.
The value is defined to be int64_t{Value} < 0. An explicit promotion to int64_t is used to avoid warnings of implicit conversions of smaller types (e.g. bool) to int.