Adds the given amount of items to the collection. The items count.
| 509 | /// </summary> |
| 510 | /// <param name="count">The items count.</param> |
| 511 | FORCE_INLINE void AddDefault(const int32 count = 1) |
| 512 | { |
| 513 | EnsureCapacity(_count + count); |
| 514 | Memory::ConstructItems(_allocation.Get() + _count, count); |
| 515 | _count += count; |
| 516 | } |
| 517 | |
| 518 | /// <summary> |
| 519 | /// Adds the given amount of uninitialized items to the collection without calling the constructor. |
no test coverage detected