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

Method RemoveMultiple

SampleFramework12/v1.00/Containers.h:288–295  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

286 }
287
288 void RemoveMultiple(uint64 idx, uint64 numItems)
289 {
290 Assert_(idx < count);
291 Assert_(idx + numItems <= count);
292 for(uint64 i = idx + numItems; i < count; ++i)
293 array[i - numItems] = array[i];
294 count -= numItems;
295 }
296
297 void RemoveAll()
298 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected