* Get number of unused bytes left between the Builder and Consumer position. */
| 25 | * Get number of unused bytes left between the Builder and Consumer position. |
| 26 | */ |
| 27 | [[nodiscard]] InPlaceBuilder::size_type InPlaceBuilder::GetBytesUnused() const noexcept |
| 28 | { |
| 29 | return this->consumer.GetBytesRead() - this->position; |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Append buffer. |
no test coverage detected