| 267 | T back() const { return *(_last - 1); } |
| 268 | |
| 269 | bool full() const { return _last == _end; } |
| 270 | bool empty() const { return _first == _last; } |
| 271 | int size() const { return _last - _first; } |
| 272 |
nothing calls this directly
no outgoing calls
no test coverage detected