MCPcopy Create free account
hub / github.com/apache/arrow / CheckNext

Method CheckNext

cpp/src/arrow/c/bridge.cc:851–856  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

849 std::string_view Rest() { return view_.substr(index_); }
850
851 Status CheckNext(char c) {
852 if (AtEnd() || Next() != c) {
853 return Invalid();
854 }
855 return Status::OK();
856 }
857
858 Status CheckHasNext() {
859 if (AtEnd()) {

Callers 5

ProcessTimestampMethod · 0.80
ProcessDecimalMethod · 0.80
ProcessFixedSizeListMethod · 0.80
ProcessUnionMethod · 0.80

Calls 3

NextFunction · 0.50
InvalidFunction · 0.50
OKFunction · 0.50

Tested by

no test coverage detected