| 573 | return to_int32(s.c_str(), i); |
| 574 | } |
| 575 | [[nodiscard]] inline bool to_size_t(std::string const & s, size_t & i) |
| 576 | { |
| 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); |
no outgoing calls
no test coverage detected