| 345 | } |
| 346 | |
| 347 | void join(const Array<T, Storage>& L) |
| 348 | { |
| 349 | fb_assert(count <= FB_MAX_SIZEOF - L.count); |
| 350 | ensureCapacity(count + L.count); |
| 351 | memcpy(data + count, L.data, sizeof(T) * L.count); |
| 352 | count += L.count; |
| 353 | } |
| 354 | |
| 355 | void assign(const Array<T, Storage>& source) |
| 356 | { |
no outgoing calls
no test coverage detected