| 286 | } |
| 287 | |
| 288 | void RemoveMultiple(uint64 idx, uint64 numItems) |
| 289 | { |
| 290 | Assert_(idx < count); |
| 291 | Assert_(idx + numItems <= count); |
| 292 | for(uint64 i = idx + numItems; i < count; ++i) |
| 293 | array[i - numItems] = array[i]; |
| 294 | count -= numItems; |
| 295 | } |
| 296 | |
| 297 | void RemoveAll() |
| 298 | { |
nothing calls this directly
no outgoing calls
no test coverage detected