| 454 | } |
| 455 | |
| 456 | void Remove(uint64 idx) |
| 457 | { |
| 458 | Assert_(idx < count); |
| 459 | for (uint64 i = idx; i < count - 1; ++i) |
| 460 | array[i] = array[i + 1]; |
| 461 | --count; |
| 462 | } |
| 463 | |
| 464 | void Remove(uint64 idx, T fillValue) |
| 465 | { |
nothing calls this directly
no outgoing calls
no test coverage detected