Removes the last items from the collection.
| 714 | /// Removes the last items from the collection. |
| 715 | /// </summary> |
| 716 | void RemoveLast() |
| 717 | { |
| 718 | ASSERT(_count > 0); |
| 719 | --_count; |
| 720 | Memory::DestructItems(_allocation.Get() + _count, 1); |
| 721 | } |
| 722 | |
| 723 | /// <summary> |
| 724 | /// Swaps the contents of collection with the other object without copy operation. Performs fast internal data exchange. |
no test coverage detected