| 130 | |
| 131 | Allocator& GetAllocator() { return *allocator_; } |
| 132 | bool Empty() const { return stackTop_ == stack_; } |
| 133 | size_t GetSize() const { return static_cast<size_t>(stackTop_ - stack_); } |
| 134 | size_t GetCapacity() const { return static_cast<size_t>(stackEnd_ - stack_); } |
| 135 |
no outgoing calls
no test coverage detected