| 402 | } |
| 403 | |
| 404 | size_t CompressedVectorWriterImpl::totalOutputAvailable() const |
| 405 | { |
| 406 | size_t total = 0; |
| 407 | |
| 408 | for ( const auto &bytestream : bytestreams_ ) |
| 409 | { |
| 410 | total += bytestream->outputAvailable(); |
| 411 | } |
| 412 | |
| 413 | return total; |
| 414 | } |
| 415 | |
| 416 | size_t CompressedVectorWriterImpl::currentPacketSize() const |
| 417 | { |
nothing calls this directly
no test coverage detected