* If the next data matches 'str', then skip it. */
| 461 | * If the next data matches 'str', then skip it. |
| 462 | */ |
| 463 | void SkipIf(std::string_view str) |
| 464 | { |
| 465 | if (this->PeekIf(str)) this->Skip(str.size()); |
| 466 | } |
| 467 | |
| 468 | /** |
| 469 | * Check whether the next 8-bit char matches 'c'. |
no test coverage detected