Preparing search index...
The search index is not available
SDK Core Documentation - v0.0.2-5
SDK Core Documentation
OverflowBehavior
Type alias OverflowBehavior
Overflow
Behavior
:
"throw"
|
"truncate"
|
"clamp"
How to handle integer overflow.
throw
: Throws an error if value overflows (or underflows).
truncate
: Truncates or extends bit-pattern with sign extension (C++11 behavior).
clamp
: Clamps the value within the supported range.
Settings
Member Visibility
Inherited
Theme
OS
Light
Dark
SDK Core Documentation - v0.0.2-5
Loading...
How to handle integer overflow.
throw
: Throws an error if value overflows (or underflows).truncate
: Truncates or extends bit-pattern with sign extension (C++11 behavior).clamp
: Clamps the value within the supported range.