MCPcopy Create free account
hub / github.com/PlayFab/gsdk / match

Method match

cpp/cppsdk/jsoncpp.cpp:571–580  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

569}
570
571bool Reader::match(Location pattern, int patternLength) {
572 if (end_ - current_ < patternLength)
573 return false;
574 int index = patternLength;
575 while (index--)
576 if (current_[index] != pattern[index])
577 return false;
578 current_ += patternLength;
579 return true;
580}
581
582bool Reader::readComment() {
583 Location commentBegin = current_ - 1;

Callers 1

updateVersion.jsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected