| 4147 | */ |
| 4148 | |
| 4149 | bool String::ToInteger(long long* value, UInt8 base) const |
| 4150 | { |
| 4151 | if (value) |
| 4152 | { |
| 4153 | bool ok; |
| 4154 | *value = StringToNumber(*this, base, &ok); |
| 4155 | |
| 4156 | return ok; |
| 4157 | } |
| 4158 | else |
| 4159 | return IsNumber(base); |
| 4160 | } |
| 4161 | |
| 4162 | /*! |
| 4163 | * \brief Converts the string to lower |
no outgoing calls
no test coverage detected