MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / push_back

Method push_back

modules/engine/graphics/src/d3d12/D3D12MemAlloc.cpp:993–998  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

991
992template<typename T>
993void Vector<T>::push_back(const T& src)
994{
995 const size_t newIndex = size();
996 resize(newIndex + 1);
997 m_pArray[newIndex] = src;
998}
999
1000template<typename T>
1001void Vector<T>::pop_front()

Callers 15

open_projectsFunction · 0.45
compile_projectFunction · 0.45
PatchBeginEndKeysFunction · 0.45
PushBackIdentityKeyFunction · 0.45
CopyRawFunction · 0.45
MakeDeltaFunction · 0.45
operator()Method · 0.45
DecimateFunction · 0.45
SampleLinearChannelFunction · 0.45
ImportMethod · 0.45
GetAnimationNamesMethod · 0.45

Calls 2

sizeFunction · 0.50
resizeFunction · 0.50

Tested by

no test coverage detected