| 495 | } // namespace internal |
| 496 | |
| 497 | [[nodiscard]] inline bool to_int(char const * s, int & i, int base = 10) |
| 498 | { |
| 499 | return internal::ToInteger(s, i, base); |
| 500 | } |
| 501 | |
| 502 | [[nodiscard]] inline bool to_uint(char const * s, unsigned int & i, int base = 10) |
| 503 | { |