Performs push on stack operation (stack grows at the end of the collection). The item to append.
| 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). |
no test coverage detected