int
Type¶
Represents a 32-bit integer. Can hold values from -2,147,483,648 to 2,147,483,647.
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) |
int | Reverse | Endianness reversed |
int | LowPart | Lower 16-bits of the value. |
int | HighPart | Upper 16-bits of the value. |
string | Prettify[precision] | Pretty print the number with commas, with optional precision |
string | (To String) | The number as a string |