MCPcopy Create free account
hub / github.com/apache/impala / SkipWhitespace

Method SkipWhitespace

be/src/exec/json/json-parser.h:279–282  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

277 }
278
279 inline void SkipWhitespace() {
280 char c;
281 while ((c = s_.Peek()) == ' ' || c == '\n' || c == '\r' || c == '\t') s_.Take();
282 }
283
284 /// The following function is used to skip a specific JSON value. It maintains logic
285 /// consistent with rapidjson, consuming the stream and returning true upon successfully

Callers

nothing calls this directly

Calls 2

PeekMethod · 0.45
TakeMethod · 0.45

Tested by

no test coverage detected