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

Method Array

src/common/classes/array.h:85–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83 typedef const_pointer const_iterator;
84
85 explicit Array(MemoryPool& p)
86 : Storage(p), count(0), capacity(this->getStorageSize()), data(this->getStorage())
87 {
88 // Ensure we can carry byte copy operations.
89 fb_assert(capacity < FB_MAX_SIZEOF / sizeof(T));
90 }
91
92 Array(MemoryPool& p, const size_type InitialCapacity)
93 : Storage(p), count(0), capacity(this->getStorageSize()), data(this->getStorage())

Callers

nothing calls this directly

Calls 3

addFunction · 0.50
getStorageSizeMethod · 0.45
getStorageMethod · 0.45

Tested by

no test coverage detected