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

Method CheckNext

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

Source from the content-addressed store, hash-verified

854 std::string_view Rest() { return view_.substr(index_); }
855
856 Status CheckNext(char c) {
857 if (AtEnd() || Next() != c) {
858 return Invalid();
859 }
860 return Status::OK();
861 }
862
863 Status CheckHasNext() {
864 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