| 5585 | explicit VmaList(const AllocatorT& allocator) : m_RawList(allocator.m_pCallbacks) {} |
| 5586 | |
| 5587 | bool empty() const { return m_RawList.IsEmpty(); } |
| 5588 | size_t size() const { return m_RawList.GetCount(); } |
| 5589 | |
| 5590 | iterator begin() { return iterator(&m_RawList, m_RawList.Front()); } |