MCPcopy Create free account
hub / github.com/FastFlowLM/FastFlowLM / skip_ws

Method skip_ws

src/common/AutoModel/modeling_gemma4e.cpp:41–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers 1

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected