| 370 | T &last() { ASSERT(ulen > 0); return buf[ulen-1]; } |
| 371 | void drop() { ASSERT(ulen > 0); buf[--ulen].~T(); } |
| 372 | bool empty() const { return ulen==0; } |
| 373 | |
| 374 | int capacity() const { return alen; } |
| 375 | int length() const { return ulen; } |
no outgoing calls
no test coverage detected