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

Class NextCharUTF8

be/src/gutil/strings/util.cc:893–900  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

891}
892
893struct NextCharUTF8 {
894 Rune operator()(const char** p, const char* end) {
895 Rune c;
896 int offset = charntorune(&c, *p, static_cast<int>(end - *p));
897 *p += offset;
898 return c;
899 }
900};
901
902bool MatchPattern(const StringPiece& eval,
903 const StringPiece& pattern) {

Callers 1

MatchPatternFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected