| 263 | return false; |
| 264 | } |
| 265 | void Delete (unsigned int index) |
| 266 | { |
| 267 | if (index < Count) |
| 268 | { |
| 269 | Array[index].~T(); |
| 270 | if (index < --Count) |
| 271 | { |
| 272 | memmove (&Array[index], &Array[index+1], sizeof(T)*(Count - index)); |
| 273 | } |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | void Delete (unsigned int index, int deletecount) |
| 278 | { |
nothing calls this directly
no outgoing calls
no test coverage detected