| 452 | } |
| 453 | |
| 454 | void AddMultiple(T item, uint64 itemCount) |
| 455 | { |
| 456 | if(itemCount == 0) |
| 457 | return; |
| 458 | |
| 459 | Reserve(count + itemCount); |
| 460 | |
| 461 | for(uint64 i = 0; i < itemCount; ++i) |
| 462 | array[i + count] = item; |
| 463 | count += itemCount; |
| 464 | } |
| 465 | |
| 466 | void Append(const T* items, uint64 itemCount) |
| 467 | { |
nothing calls this directly
no outgoing calls
no test coverage detected