| 69 | [[nodiscard]] qsizetype freeSpace() const noexcept; |
| 70 | |
| 71 | [[nodiscard]] qsizetype capacity() const noexcept { return m_capacity; } |
| 72 | |
| 73 | // Raw backing-store pointer; owners use it to pin the buffer into physical memory |
| 74 | [[nodiscard]] const StorageType* storage() const noexcept { return m_buffer.data(); } |
no outgoing calls
no test coverage detected