| 630 | |
| 631 | template <typename T, typename = std::enable_if_t<std::is_integral<T>::value>> |
| 632 | [[nodiscard]] inline bool to_any(std::string const & s, T & i) |
| 633 | { |
| 634 | return internal::ToInteger(s.c_str(), i); |
| 635 | } |
| 636 | |
| 637 | [[nodiscard]] inline bool to_any(std::string const & s, float & f) |
| 638 | { |