MCPcopy Create free account
hub / github.com/adriancable/eternal / Delete

Method Delete

doom/src/tarray.h:265–275  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

263 return false;
264 }
265 void Delete (unsigned int index)
266 {
267 if (index < Count)
268 {
269 Array[index].~T();
270 if (index < --Count)
271 {
272 memmove (&Array[index], &Array[index+1], sizeof(T)*(Count - index));
273 }
274 }
275 }
276
277 void Delete (unsigned int index, int deletecount)
278 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected