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

Method Remove

SampleFramework12/v1.00/Containers.h:274–280  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

272 }
273
274 void Remove(uint64 idx)
275 {
276 Assert_(idx < count);
277 for(uint64 i = idx; i < count - 1; ++i)
278 array[i] = array[i + 1];
279 --count;
280 }
281
282 void Remove(uint64 idx, T fillValue)
283 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected