| 53 | } |
| 54 | |
| 55 | size_t OutputBuffer::Length() const noexcept |
| 56 | { |
| 57 | size_t totalLength = 0; |
| 58 | for (const OutputBuffer *current = this; current != nullptr; current = current->Next()) |
| 59 | { |
| 60 | totalLength += current->DataLength(); |
| 61 | } |
| 62 | return totalLength; |
| 63 | } |
| 64 | |
| 65 | char OutputBuffer::operator[](size_t index) const noexcept |
| 66 | { |
no test coverage detected