| 187 | void reserve(size_t S) { V.reserve(S); } |
| 188 | |
| 189 | void clear() { V.clear(); } |
| 190 | void push_back(const Value &E) { V.push_back(E); } |
| 191 | void push_back(Value &&E) { V.push_back(std::move(E)); } |
| 192 | template <typename... Args> void emplace_back(Args &&... A) { |
no outgoing calls
no test coverage detected