| 272 | } |
| 273 | |
| 274 | void Remove(uint64 idx) |
| 275 | { |
| 276 | Assert_(idx < count); |
| 277 | for(uint64 i = idx; i < count - 1; ++i) |
| 278 | array[i] = array[i + 1]; |
| 279 | --count; |
| 280 | } |
| 281 | |
| 282 | void Remove(uint64 idx, T fillValue) |
| 283 | { |
nothing calls this directly
no outgoing calls
no test coverage detected