| 115 | constexpr size_type Capacity() const noexcept { return MaxCapacity; } |
| 116 | constexpr size_type MaxSize() const noexcept { return MaxCapacity; } |
| 117 | bool Empty() const noexcept { return size_ == 0; } |
| 118 | |
| 119 | void Reserve(size_type count) |
| 120 | { |
nothing calls this directly
no outgoing calls
no test coverage detected