MCPcopy Create free account
hub / github.com/bytedance/sonic-cpp / hasTrailingChars

Method hasTrailingChars

include/sonic/dom/parser.h:88–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86
87 private:
88 sonic_force_inline bool hasTrailingChars() {
89 while (pos_ < len_) {
90 if (!internal::IsSpace(json_buf_[pos_])) return true;
91 pos_++;
92 }
93 return false;
94 }
95
96 sonic_force_inline void setParseError(SonicError err) { err_ = err; }
97

Callers

nothing calls this directly

Calls 1

IsSpaceFunction · 0.85

Tested by

no test coverage detected