MCPcopy Create free account
hub / github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator / insert

Method insert

include/vk_mem_alloc.h:5609–5609  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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); }

Callers

nothing calls this directly

Calls 2

iteratorClass · 0.85
InsertBeforeMethod · 0.80

Tested by

no test coverage detected