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

Method Append

SampleFramework12/v1.00/Containers.h:426–436  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

424 }
425
426 void Append(const T* items, uint64 itemCount)
427 {
428 if(itemCount == 0)
429 return;
430
431 Reserve(count + itemCount);
432
433 for(uint64 i = 0; i < itemCount; ++i)
434 array[i + count] = items[i];
435 count += itemCount;
436 }
437
438 void Insert(T item, uint64 idx)
439 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected