Functions | |
bool | ValBool (PCChar8 text) |
Convert the text in bool value. More... | |
Int32 | ValInt (PCChar8 text, Int32 base=DefaultBase) |
Convert the text in integer value. More... | |
UInt32 | ValUInt (PCChar8 text, Int32 base=DefaultBase) |
Convert the text in integer value. More... | |
Int32 | ValIntBaseC (PCChar8 text) |
Convert the text in integer value. Process the constants according C-style marker : 123 -> decimal, 045 -> Octal, 0x7a -> hexadecimal. More... | |
Int64 | ValInt64 (PCChar8 text) |
Convert the text in integer value. More... | |
UInt64 | ValUInt64 (PCChar8 text) |
Convert the text in integer value. More... | |
Float64 | ValFloat (PCChar8 text) |
Convert the text in float value. More... | |
bool | IsBool (PCChar8 text) |
Query if the text contains a bool value. More... | |
bool | IsInt (PCChar8 text, Int32 base=DefaultBase) |
Query if the text contains an interger value. More... | |
bool | IsFloat (PCChar8 text) |
Query if the text contains a float value. More... | |
void | CheckBool (PCChar8 text) |
Check bool. Raise an exception whenever the string doesn't contains a bool value. More... | |
void | CheckInt (PCChar8 text, Int32 base=DefaultBase) |
Check int. Raise an exception whenever the string doesn't contains an integer value. More... | |
void | CheckFloat (PCChar8 text) |
Check float. Raise an exception whenever the string doesn't contains a float value. More... | |
void CheckBool | ( | PCChar8 | text | ) |
Check bool. Raise an exception whenever the string doesn't contains a bool value.
text | The text. |
void CheckFloat | ( | PCChar8 | text | ) |
Check float. Raise an exception whenever the string doesn't contains a float value.
text | The text. |
Check int. Raise an exception whenever the string doesn't contains an integer value.
text | The text. |
base | (optional) the base. |
bool IsBool | ( | PCChar8 | text | ) |
Query if the text contains a bool value.
text | The text. |
bool IsFloat | ( | PCChar8 | text | ) |
Query if the text contains a float value.
text | The text. |
Query if the text contains an interger value.
text | The text. |
base | (optional) the base. |
bool ValBool | ( | PCChar8 | text | ) |
Convert the text in bool value.
text | The text. |
Float64 ValFloat | ( | PCChar8 | text | ) |
Convert the text in float value.
text | The text. |
Convert the text in integer value.
text | The text. |
base | (optional) the base. |
Int64 ValInt64 | ( | PCChar8 | text | ) |
Convert the text in integer value.
text | The text. |
Int32 ValIntBaseC | ( | PCChar8 | text | ) |
Convert the text in integer value. Process the constants according C-style marker : 123 -> decimal, 045 -> Octal, 0x7a -> hexadecimal.
text | The text. |
Convert the text in integer value.
text | The text. |
base | (optional) the base. |
UInt64 ValUInt64 | ( | PCChar8 | text | ) |
Convert the text in integer value.
text | The text. |