MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / join

Method join

src/common/classes/array.h:347–353  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 3

fastRemoveMethod · 0.45
_removePageMethod · 0.45
dupMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected