| 577 | return to_size_t(s.c_str(), i); |
| 578 | } |
| 579 | [[nodiscard]] inline bool to_float(std::string const & s, float & f) |
| 580 | { |
| 581 | return to_float(s.c_str(), f); |
| 582 | } |
| 583 | [[nodiscard]] inline bool to_double(std::string const & s, double & d) |
| 584 | { |
| 585 | return to_double(s.c_str(), d); |
no outgoing calls