* Returns number of remaining bytes within the storage buffer * that can be used for further allocation requests. */
| 99 | * that can be used for further allocation requests. |
| 100 | */ |
| 101 | size_t used() const noexcept |
| 102 | { |
| 103 | return static_cast<size_t>(ptr_ - buf_); |
| 104 | } |
| 105 | |
| 106 | private: // Private member functions |
| 107 |
nothing calls this directly
no outgoing calls
no test coverage detected