package
0.0.0-20230203010516-6d4bf48beedd
Repository: https://github.com/onyx-protocol/onyx.git
Documentation: pkg.go.dev
# Functions
AddInt32 returns a + b with an integer overflow check.
AddInt64 returns a + b with an integer overflow check.
AddUint32 returns a + b with an integer overflow check.
AddUint64 returns a + b with an integer overflow check.
DivInt32 returns a / b with an integer overflow check.
DivInt64 returns a / b with an integer overflow check.
DivUint32 returns a / b with an integer overflow check.
DivUint64 returns a / b with an integer overflow check.
LshiftInt32 returns a << b with an integer overflow check.
LshiftInt64 returns a << b with an integer overflow check.
LshiftUint32 returns a << b with an integer overflow check.
LshiftUint64 returns a << b with an integer overflow check.
ModInt32 returns a % b with an integer overflow check.
ModInt64 returns a % b with an integer overflow check.
ModUint32 returns a % b with an integer overflow check.
ModUint64 returns a % b with an integer overflow check.
MulInt32 returns a * b with an integer overflow check.
MulInt64 returns a * b with an integer overflow check.
MulUint32 returns a * b with an integer overflow check.
MulUint64 returns a * b with an integer overflow check.
NegateInt32 returns -a with an integer overflow check.
NegateInt64 returns -a with an integer overflow check.
SubInt32 returns a - b with an integer overflow check.
SubInt64 returns a - b with an integer overflow check.
SubUint32 returns a - b with an integer overflow check.
SubUint64 returns a - b with an integer overflow check.
# Variables
No description provided by the author