Performs pop from stack operation (stack grows at the end of the collection).
| 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). |
no outgoing calls
no test coverage detected