int64
Type¶
Represents a 64-bit integer. Can hold values from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.
Members¶
Type | Member | Description |
---|---|---|
float | Float | The number as a float (123 is represented as 123.0) |
double | Double | The number as a double (123 is represented as 123.0) |
string | Hex | The hex value of the integer (10 is represented as 0xA) |
int64 | Reverse | Endianness reversed |
int | LowPart | Lower 32-bits of the value. |
int | HighPart | Upper 32-bits of the value. |
string | Prettify[precision] | Pretty print the number with commas, with optional precision |
string | (To String) | The number as a string |