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

Method destroy

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

Source from the content-addressed store, hash-verified

149 }
150
151 void destroy() noexcept {
152 storage_type::destroy_several(data_, size_);
153 if (dynamic_capacity_) {
154 delete[] data_;
155 }
156 }
157
158 void move_construct(SmallVectorStorage&& other) noexcept {
159 size_ = other.size_;

Callers 3

StaticVectorImplClass · 0.45
resizeMethod · 0.45
assign_by_copyingMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected