* Check whether any bytes left to read. */
| 68 | * Check whether any bytes left to read. |
| 69 | */ |
| 70 | [[nodiscard]] bool AnyBytesLeft() const noexcept { return this->position < this->src.size(); } |
| 71 | /** |
| 72 | * Get number of bytes left to read. |
| 73 | */ |
no test coverage detected