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

Method Pop

doom/src/tarray.h:246–254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

244 return Count++;
245 }
246 bool Pop ()
247 {
248 if (Count > 0)
249 {
250 Array[--Count].~T();
251 return true;
252 }
253 return false;
254 }
255 bool Pop (T &item)
256 {
257 if (Count > 0)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected