MCPcopy Create free account
hub / github.com/IntegralPilot/wasm_os / pop_back

Method pop_back

stdlib/cpp/vector.hpp:173–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171 }
172
173 void pop_back() {
174 if (size_ > 0) {
175 --size_;
176 data_[size_].~T();
177 }
178 }
179
180 template <typename... Args>
181 void emplace_back(Args&&... args) {

Callers 1

mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected