| 5219 | bool IsEmpty() const { return m_Count == 0; } |
| 5220 | |
| 5221 | ItemType* Front() { return m_pFront; } |
| 5222 | ItemType* Back() { return m_pBack; } |
| 5223 | const ItemType* Front() const { return m_pFront; } |
| 5224 | const ItemType* Back() const { return m_pBack; } |
no outgoing calls
no test coverage detected