* Check whether the next 8-bit char matches 'c', and skip it. */
| 476 | * Check whether the next 8-bit char matches 'c', and skip it. |
| 477 | */ |
| 478 | [[nodiscard]] bool ReadCharIf(char c) |
| 479 | { |
| 480 | return this->ReadIf({&c, 1}); |
| 481 | } |
| 482 | /** |
| 483 | * If the next data matches the 8-bit char 'c', then skip it. |
| 484 | */ |
no test coverage detected