MCPcopy Create free account
hub / github.com/apache/arrow / bump_size

Method bump_size

cpp/src/arrow/util/small_vector.h:128–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126 constexpr const storage_type* const_storage_ptr() const { return data_; }
127
128 void bump_size(size_t addend) {
129 const size_t new_size = size_ + addend;
130 ensure_capacity(new_size);
131 size_ = new_size;
132 }
133
134 void ensure_capacity(size_t min_capacity) {
135 if (dynamic_capacity_) {

Callers 7

StaticVectorImplMethod · 0.45
push_backMethod · 0.45
emplace_backMethod · 0.45
insertMethod · 0.45
resizeMethod · 0.45
init_by_copyingMethod · 0.45
assign_by_copyingMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected