MCPcopy Create free account
hub / github.com/Illumina/hap.py / match

Method match

external/jsoncpp/jsoncpp.cpp:502–511  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

500}
501
502bool Reader::match(Location pattern, int patternLength) {
503 if (end_ - current_ < patternLength)
504 return false;
505 int index = patternLength;
506 while (index--)
507 if (current_[index] != pattern[index])
508 return false;
509 current_ += patternLength;
510 return true;
511}
512
513bool Reader::readComment() {
514 Location commentBegin = current_ - 1;

Callers 3

bamStatsFunction · 0.80
splitIndexFunction · 0.80
parse_sompy_statsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected