MCPcopy Create free account
hub / github.com/TheRealMJP/DeferredTexturing / Append

Method Append

SampleFramework12/v1.00/Containers.h:246–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

244 }
245
246 void Append(const T* items, uint64 itemCount)
247 {
248 if(itemCount == 0)
249 return;
250
251 Assert_(count + (itemCount - 1) < array.Size());
252 for(uint64 i = 0; i < itemCount; ++i)
253 array[i + count] = items[i];
254 count += itemCount;
255 }
256
257 void Insert(T item, uint64 idx)
258 {

Callers

nothing calls this directly

Calls 1

SizeMethod · 0.45

Tested by

no test coverage detected