View source code
Display the source code in std/experimental/checkedint.d from which this
page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a
Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Struct std.experimental.checkedint.Saturate
Hook that implements saturation, i.e. any arithmetic operation that would
overflow leaves the result at its extreme value (min
or max
depending on the
direction of the overflow).
struct Saturate
;
Saturation is not sticky; if a value reaches its saturation value, another operation may take it back to normal range.
Methods
Name | Description |
---|---|
onLowerBound
(rhs, bound)
|
Implements saturation for operators += , -= , *= , /= , %= , ^^= , &= , |= , ^= , <<= , >>= ,
and >>>= . This hook is called if the result of the binary operation does
not fit in Lhs without loss of information or a change in sign.
|
onOverflow
(lhs, rhs)
|
Implements saturation for operators + , - (unary and binary), * , / ,
% , ^^ , & , | , ^ , << , >> , and >>> .
|
onUpperBound
(rhs, bound)
|
Implements saturation for operators += , -= , *= , /= , %= , ^^= , &= , |= , ^= , <<= , >>= ,
and >>>= . This hook is called if the result of the binary operation does
not fit in Lhs without loss of information or a change in sign.
|
Example
auto x = checked!Saturate(int .max);
++x;
writeln(x); // int.max
--x;
writeln(x); // int.max - 1
x = int .min;
writeln(-x); // int.max
x -= 42;
writeln(x); // int.min
writeln(x * -2); // int.max
Authors
License
Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.