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

Method AddMultiple

SampleFramework11/v1.02/Containers.h:183–192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181 }
182
183 void AddMultiple(T item, uint64 itemCount)
184 {
185 if(itemCount == 0)
186 return;
187
188 Assert_(count + (itemCount - 1) < array.Size());
189 for(uint64 i = 0; i < itemCount; ++i)
190 array[i + count] = item;
191 count += itemCount;
192 }
193
194 void Append(const T* items, uint64 itemCount)
195 {

Callers

nothing calls this directly

Calls 1

SizeMethod · 0.45

Tested by

no test coverage detected