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

Method AddMultiple

SampleFramework12/v1.00/Containers.h:235–244  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

233 }
234
235 void AddMultiple(T item, uint64 itemCount)
236 {
237 if(itemCount == 0)
238 return;
239
240 Assert_(count + (itemCount - 1) < array.Size());
241 for(uint64 i = 0; i < itemCount; ++i)
242 array[i + count] = item;
243 count += itemCount;
244 }
245
246 void Append(const T* items, uint64 itemCount)
247 {

Callers

nothing calls this directly

Calls 1

SizeMethod · 0.45

Tested by

no test coverage detected