MCPcopy Create free account
hub / github.com/apple/foundationdb / resize

Method resize

fdbclient/include/fdbclient/VersionedMap.h:113–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 PTree<T> const* operator[](size_t i) const { return entries_[i]; }
112
113 void resize(size_t sz) {
114 size_ = sz;
115 ASSERT(size_ < N);
116 }
117
118 void push_back(PTree<T> const* node) {
119 entries_[size_++] = { node };

Callers 7

insertMethod · 0.45
ConverterMethod · 0.45
ConvertToStoreMethod · 0.45
finalizeMD5Method · 0.45
uniquifyFunction · 0.45
loadFunction · 0.45
JsonBuilderMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected