Returns the capacity of this buffer.
| 1790 | |
| 1791 | /// Returns the capacity of this buffer. |
| 1792 | constexpr auto capacity() const noexcept -> size_t { return capacity_; } |
| 1793 | |
| 1794 | /// Returns a pointer to the buffer data (not null-terminated). |
| 1795 | FMT_CONSTEXPR auto data() noexcept -> T* { return ptr_; } |
nothing calls this directly
no outgoing calls
no test coverage detected