|
Jameo Core Library
|
This class collect static methods to manipulate integer values. More...
Static Public Member Functions | |
| static uint8 | digits (int64 number) |
| Returns the number of digits, this number has. | |
| static int64 | fromHex (const jm::String &str) |
| Method converts a hexadecimal string value into an integer number. | |
| static int64 | fromHex (const jm::String &str, size_t begin, size_t size) |
| Method converts a hexadecimal string value into an integer number. | |
| static jm::String | toHexString (int64 number) |
| Converts an integer number to a hexadecimal string value. | |
| static jm::String | toRomanString (int64 number) |
| Converts an integer number to a string representation of a Roman numeral. | |
| static jm::String | toLatinAlphabetString (int64 number) |
| Converts an integer number to a string representation of a capital letter. | |
This class collect static methods to manipulate integer values.
|
static |
Returns the number of digits, this number has.
|
static |
Method converts a hexadecimal string value into an integer number.
| str | A character string that represents a hexadecimal coded number. E.g. "FF" for 255. |
|
static |
Method converts a hexadecimal string value into an integer number.
| str | A character string that represents a hexadecimal coded number. E.g. "FF" for 255. |
| begin | start index of hex string |
| size | Size of hex string |
|
static |
Converts an integer number to a hexadecimal string value.
|
static |
Converts an integer number to a string representation of a capital letter.
|
static |
Converts an integer number to a string representation of a Roman numeral.