| 86 | // Requests that the capacity be at least enough to contain n elements. |
| 87 | void reserve(size_t n); |
| 88 | void clear() { reset(nullptr, 0); } |
| 89 | |
| 90 | // Iterators |
| 91 | V* begin() { return data(); } |
nothing calls this directly
no outgoing calls
no test coverage detected