Returns the number of elements that the buffer holds. */
| 33 | constexpr T* data() const { return data_; } |
| 34 | /** Returns the number of elements that the buffer holds. */ |
| 35 | constexpr size_t size() const { return size_; } |
| 36 | |
| 37 | private: |
| 38 | T* data_ = nullptr; |
no outgoing calls
no test coverage detected