* Check whether any unused bytes are left between the Builder and Consumer position. */
| 17 | * Check whether any unused bytes are left between the Builder and Consumer position. |
| 18 | */ |
| 19 | [[nodiscard]] bool InPlaceBuilder::AnyBytesUnused() const noexcept |
| 20 | { |
| 21 | return this->consumer.GetBytesRead() > this->position; |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Get number of unused bytes left between the Builder and Consumer position. |
no test coverage detected