| 39 | explicit Gemma4eArgsParser(const std::string& src) : s(src) {} |
| 40 | |
| 41 | void skip_ws() { |
| 42 | while (i < s.size() && |
| 43 | std::isspace(static_cast<unsigned char>(s[i]))) ++i; |
| 44 | } |
| 45 | void skip_ws_at(size_t& pos) const { |
| 46 | while (pos < s.size() && |
| 47 | std::isspace(static_cast<unsigned char>(s[pos]))) ++pos; |
no test coverage detected