| 5223 | VmaList(const AllocatorT& allocator) : m_RawList(allocator.m_pCallbacks) {} |
| 5224 | |
| 5225 | bool empty() const { return m_RawList.IsEmpty(); } |
| 5226 | size_t size() const { return m_RawList.GetCount(); } |
| 5227 | |
| 5228 | iterator begin() { return iterator(&m_RawList, m_RawList.Front()); } |
no test coverage detected