MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / pop_back

Method pop_back

Engine/source/console/arrayObject.cpp:311–320  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

309//-----------------------------------------------------------------------------
310
311void ArrayObject::pop_back()
312{
313 if(mArray.size() <= 0)
314 return;
315
316 mArray.pop_back();
317
318 if( mCurrentIndex >= mArray.size() )
319 mCurrentIndex = mArray.size() - 1;
320}
321
322//-----------------------------------------------------------------------------
323

Callers 13

arrayObject.cppFile · 0.45
readFileMethod · 0.45
killObjectMethod · 0.45
saveObjectMethod · 0.45
popElementMethod · 0.45
popObjectMethod · 0.45
deleteAllObjectsMethod · 0.45
operator++Method · 0.45
clearMethod · 0.45
popFixScopeMethod · 0.45
dumpClassesFunction · 0.45
dumpClassesMethod · 0.45

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected