| 5607 | |
| 5608 | void push_back(const T& value) { m_RawList.PushBack(value); } |
| 5609 | iterator insert(iterator it, const T& value) { return iterator(&m_RawList, m_RawList.InsertBefore(it.m_pItem, value)); } |
| 5610 | |
| 5611 | void clear() { m_RawList.Clear(); } |
| 5612 | void erase(iterator it) { m_RawList.Remove(it.m_pItem); } |
nothing calls this directly
no test coverage detected