| 283 | } |
| 284 | |
| 285 | T* removeCount(const size_type index, const size_type n) throw() |
| 286 | { |
| 287 | fb_assert(index + n <= count); |
| 288 | memmove(data + index, data + index + n, sizeof(T) * (count - index - n)); |
| 289 | count -= n; |
| 290 | return &data[index]; |
| 291 | } |
| 292 | |
| 293 | T* remove(T* itr) throw() |
| 294 | { |
no outgoing calls
no test coverage detected