| 424 | } |
| 425 | |
| 426 | void Append(const T* items, uint64 itemCount) |
| 427 | { |
| 428 | if(itemCount == 0) |
| 429 | return; |
| 430 | |
| 431 | Reserve(count + itemCount); |
| 432 | |
| 433 | for(uint64 i = 0; i < itemCount; ++i) |
| 434 | array[i + count] = items[i]; |
| 435 | count += itemCount; |
| 436 | } |
| 437 | |
| 438 | void Insert(T item, uint64 idx) |
| 439 | { |
nothing calls this directly
no outgoing calls
no test coverage detected