This module implements integral arithmetic primitives that check for out-of-range results.
Integral arithmetic operators operate on fixed width types. Results that are not representable in those fixed widths are silently truncated to fit. This module offers integral arithmetic primitives that produce the same results, but set an 'overflow' flag when such truncation occurs. The setting is sticky, meaning that numerous operations can be cascaded and then the flag need only be checked at the end. Whether the operation is signed or unsigned is indicated by an 's' or 'u' suffix, respectively. While this could be achieved without such suffixes by using overloading on the signedness of the types, the suffix makes it clear which is happening without needing to examine the types.
While the generic versions of these functions are computationally expensive relative to the cost of the operation itself, compiler implementations are free to recognize them and generate equivalent and faster code.
Add two signed integers, checking for overflow.
The overflow is sticky, meaning a sequence of operations can be done and overflow need only be checked at the end.
int x
| left operand |
int y
| right operand |
bool overflow
| set if an overflow occurs, is not affected otherwise |
Add two unsigned integers, checking for overflow (aka carry).
The overflow is sticky, meaning a sequence of operations can be done and overflow need only be checked at the end.
uint x
| left operand |
uint y
| right operand |
bool overflow
| set if an overflow occurs, is not affected otherwise |
Subtract two signed integers, checking for overflow.
The overflow is sticky, meaning a sequence of operations can be done and overflow need only be checked at the end.
int x
| left operand |
int y
| right operand |
bool overflow
| set if an overflow occurs, is not affected otherwise |
Subtract two unsigned integers, checking for overflow (aka borrow).
The overflow is sticky, meaning a sequence of operations can be done and overflow need only be checked at the end.
uint x
| left operand |
uint y
| right operand |
bool overflow
| set if an overflow occurs, is not affected otherwise |
Negate an integer.
int x
| operand |
bool overflow
| set if x cannot be negated, is not affected otherwise |
Multiply two signed integers, checking for overflow.
The overflow is sticky, meaning a sequence of operations can be done and overflow need only be checked at the end.
int x
| left operand |
int y
| right operand |
bool overflow
| set if an overflow occurs, is not affected otherwise |
Multiply two unsigned integers, checking for overflow (aka carry).
The overflow is sticky, meaning a sequence of operations can be done and overflow need only be checked at the end.
uint x
| left operand |
uint y
| right operand |
bool overflow
| set if an overflow occurs, is not affected otherwise |
© 1999–2018 The D Language Foundation
Licensed under the Boost License 1.0.
https://dlang.org/phobos/core_checkedint.html