| 217 | T* end() { return data + count; } |
| 218 | |
| 219 | void insert(const size_type index, const T& item) |
| 220 | { |
| 221 | fb_assert(index <= count); |
| 222 | fb_assert(count < FB_MAX_SIZEOF); |
| 223 | ensureCapacity(count + 1); |
| 224 | memmove(data + index + 1, data + index, sizeof(T) * (count++ - index)); |
| 225 | data[index] = item; |
| 226 | } |
| 227 | |
| 228 | void insert(const size_type index, const Array<T, Storage>& items) |
| 229 | { |
no outgoing calls