MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Pop

Method Pop

Source/Engine/Core/Collections/Array.h:765–770  ·  view source on GitHub ↗

Performs pop from stack operation (stack grows at the end of the collection).

Source from the content-addressed store, hash-verified

763 /// Performs pop from stack operation (stack grows at the end of the collection).
764 /// </summary>
765 FORCE_INLINE T Pop()
766 {
767 T item = MoveTemp(Last());
768 RemoveLast();
769 return item;
770 }
771
772 /// <summary>
773 /// Peeks items which is at the top of the stack (stack grows at the end of the collection).

Callers 4

GetUnscopedMethod · 0.45
QuickSortFunction · 0.45
SortArrayFunction · 0.45
QuickSortObjFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected