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.WithNaN
Hook that reserves a special value as a "Not a Number" representative. For
signed integrals, the reserved value is T
. For signed integrals, the
reserved value is T
.
struct WithNaN
;
The default value of a Checked!(X, WithNaN)
is its NaN value, so care must
be taken that all variables are explicitly initialized. Any arithmetic and logic
operation involving at least on NaN becomes NaN itself. All of a == b
, a < b
, a > b
, a <= b
, a >= b
yield false
if at least one of
a
and b
is NaN.
Methods
Name | Description |
---|---|
hookOpBinary
(lhs, rhs)
|
Defines hooks for binary operators + , - , * , / , % , ^^ , & , | ,
^ , << , >> , and >>> for cases where a Checked object is the
left-hand side operand. If lhs == WithNaN , returns
WithNaN without evaluating the
operand. Otherwise, evaluates the operand. If evaluation does not overflow,
returns the result. Otherwise, returns WithNaN .
|
hookOpBinaryRight
(lhs, rhs)
|
Defines hooks for binary operators + , - , * , / , % , ^^ , & , | ,
^ , << , >> , and >>> for cases where a Checked object is the
right-hand side operand. If rhs == WithNaN , returns
WithNaN without evaluating the
operand. Otherwise, evaluates the operand. If evaluation does not overflow,
returns the result. Otherwise, returns WithNaN .
|
hookOpCast
(rhs)
|
If rhs is WithNaN , returns
WithNaN . Otherwise, returns cast(Lhs) rhs .
|
hookOpCmp
(lhs, rhs)
|
If lhs == WithNaN , returns double . Otherwise,
has the same semantics as the default comparison.
|
hookOpEquals
(lhs, rhs)
|
Returns false if lhs == WithNaN , lhs == rhs
otherwise.
|
hookOpOpAssign
(lhs, rhs)
|
Defines hooks for binary operators += , -= , *= , /= , %= , ^^= ,
&= , |= , ^= , <<= , >>= , and >>>= for cases where a Checked
object is the left-hand side operand. If lhs ==
WithNaN , no action is carried. Otherwise, evaluates the
operand. If evaluation does not overflow and fits in Lhs without loss of
information or change of sign, sets lhs to the result. Otherwise, sets
lhs to WithNaN .
|
hookOpUnary
(v)
|
Defines hooks for unary operators - , ~ , ++ , and -- .
|
Example
auto x1 = Checked!(int, WithNaN)();
assert(x1 .isNaN);
writeln(x1 .get); // int.min
assert(x1 != x1);
assert(!(x1 < x1));
assert(!(x1 > x1));
assert(!(x1 == x1));
++x1;
assert(x1 .isNaN);
writeln(x1 .get); // int.min
--x1;
assert(x1 .isNaN);
writeln(x1 .get); // int.min
x1 = 42;
assert(!x1 .isNaN);
writeln(x1); // x1
assert(x1 <= x1);
assert(x1 >= x1);
static assert(x1 .min == int .min + 1);
x1 += long(int .max);
Authors
License
Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.