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

Method Remove

SampleFramework12/v1.00/Containers.h:456–462  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

454 }
455
456 void Remove(uint64 idx)
457 {
458 Assert_(idx < count);
459 for (uint64 i = idx; i < count - 1; ++i)
460 array[i] = array[i + 1];
461 --count;
462 }
463
464 void Remove(uint64 idx, T fillValue)
465 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected