|
Decrement uint64
|
Decreases the value of uint64 by one. |
|
Increment uint64
|
Increases the value of uint64 by one. |
|
Make Literal uint64 from String
|
Tries to parse the input string value.
If the string value is prefixed with "0x" it will be interpreted as a hex value, otherwise as a decimal value. |
|
String(Hex) to uint64
|
Converts the hex string containing hexadecimal characters to uint64.
The input string can be prefixed with "0x" which will be ignored during the conversion. |
|
uint64 != Byte
|
Returns true if A is not equal to B (A != B) |
|
uint64 != String
|
Returns true if A is not equal to B (A != B), where B is a String |
|
uint64 != integer
|
Returns true if A is not equal to B (A != B) |
|
uint64 != integer64
|
Returns true if A is not equal to B (A != B) |
|
uint64 != uint64
|
Returns true if A is not equal to B (A != B) |
|
uint64 % Byte
|
Modulo (A % B) |
|
uint64 % String
|
Modulo (A % B), where B is a String |
|
uint64 % integer
|
Modulo (A % B) |
|
uint64 % integer64
|
Modulo (A % B) |
|
uint64 % uint64
|
Modulo (A % B) |
|
uint64 * Byte
|
Multiplication (A * B) |
|
uint64 * String
|
Multiplication (A * B), where B is a String |
|
uint64 * integer
|
Multiplication (A * B) |
|
uint64 * integer64
|
Multiplication (A * B) |
|
uint64 * uint64
|
Multiplication (A * B) |
|
uint64 + Byte
|
Addition (A + B) |
|
uint64 + String
|
Addition (A + B), where B is a String |
|
uint64 + integer
|
Addition (A + B) |
|
uint64 + integer64
|
Addition (A + B) |
|
uint64 + uint64
|
Addition (A + B) |
|
uint64 - Byte
|
Subtraction (A - B) |
|
uint64 - String
|
Subtraction (A - B), where B is a String |
|
uint64 - integer
|
Subtraction (A - B) |
|
uint64 - integer64
|
Subtraction (A - B) |
|
uint64 - uint64
|
Subtraction (A - B) |
|
uint64 / Byte
|
Division (A / B) |
|
uint64 / String
|
Division (A / B), where B is a String |
|
uint64 / integer
|
Division (A / B) |
|
uint64 / integer64
|
Division (A / B) |
|
uint64 / uint64
|
Division (A / B) |
|
uint64 < Byte
|
Returns true if A is less than B (A < B) |
|
uint64 < String
|
Returns true if A is less than B (A < B), where B is a String |
|
uint64 < integer
|
Returns true if A is less than B (A < B) |
|
uint64 < integer64
|
Returns true if A is less than B (A < B) |
|
uint64 < uint64
|
Returns true if A is less than B (A < B) |
|
uint64 <= Byte
|
Returns true if A is less than or equal to B (A <= B) |
|
uint64 <= String
|
Returns true if A is less than or equal to B (A <= B), where B is a String |
|
uint64 <= integer
|
Returns true if A is less than or equal to B (A <= B) |
|
uint64 <= integer64
|
Returns true if A is less than or equal to B (A <= B) |
|
uint64 <= uint64
|
Returns true if A is less than or equal to B (A <= B) |
|
uint64 == Byte
|
Returns true if A is equal to B (A == B) |
|
uint64 == String
|
Returns true if A is equal to B (A == B), where B is a String |
|
uint64 == integer
|
Returns true if A is equal to B (A == B) |
|
uint64 == integer64
|
Returns true if A is equal to B (A == B) |
|
uint64 == uint64
|
Returns true if A is equal to B (A == B) |
|
uint64 > Byte
|
Returns true if A is greater than B (A > B) |
|
uint64 > String
|
Returns true if A is greater than B (A > B), where B is a String |
|
uint64 > integer
|
Returns true if A is greater than B (A > B) |
|
uint64 > integer64
|
Returns true if A is greater than B (A > B) |
|
uint64 > uint64
|
Returns true if A is greater than B (A > B) |
|
uint64 >= Byte
|
Returns true if A is greater than or equal to B (A >= B) |
|
uint64 >= String
|
Returns true if A is greater than or equal to B (A >= B), where B is a String |
|
uint64 >= integer
|
Returns true if A is greater than or equal to B (A >= B) |
|
uint64 >= integer64
|
Returns true if A is greater than or equal to B (A >= B) |
|
uint64 >= uint64
|
Returns true if A is greater than or equal to B (A >= B) |
|
uint64 to Hex String
|
Converts uint64 to String in hexadecimal notation. |