Get address of bottom-most item, NULL if queue is empty
| 235 | |
| 236 | // Get address of bottom-most item, NULL if queue is empty |
| 237 | T* bottom() { |
| 238 | return _count ? ((T*)_items + _mod(_start + _count - 1, _cap)) : NULL; |
| 239 | } |
| 240 | const T* bottom() const { |
| 241 | return _count ? ((const T*)_items + _mod(_start + _count - 1, _cap)) : NULL; |
| 242 | } |
no outgoing calls