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

Method Push

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

Performs push on stack operation (stack grows at the end of the collection). The item to append.

Source from the content-addressed store, hash-verified

755 /// </summary>
756 /// <param name="item">The item to append.</param>
757 FORCE_INLINE void Push(const T& item)
758 {
759 Add(item);
760 }
761
762 /// <summary>
763 /// Performs pop from stack operation (stack grows at the end of the collection).

Callers 3

QuickSortFunction · 0.45
SortArrayFunction · 0.45
QuickSortObjFunction · 0.45

Calls 1

AddFunction · 0.70

Tested by

no test coverage detected