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

Method Peek

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

Source from the content-addressed store, hash-verified

307 bool Eos() { return *current_ == '\0'; }
308
309 char Peek() { return *current_; }
310
311 char Take() { return Eos() ? '\0' : *current_++; }
312

Callers 13

ParseMethod · 0.45
CountJsonObjectsMethod · 0.45
SkipNextObjectMethod · 0.45
SkipNullMethod · 0.45
SkipTrueMethod · 0.45
SkipFalseMethod · 0.45
SkipStringMethod · 0.45
SkipNumberMethod · 0.45
SkipObjectMethod · 0.45
SkipArrayMethod · 0.45
SkipValueMethod · 0.45
ConsumeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected