| 385 | |
| 386 | template <typename... Args> |
| 387 | void emplace_back(Args&&... args) { |
| 388 | storage_.bump_size(1); |
| 389 | storage_.storage_ptr()[storage_.size_ - 1].construct(std::forward<Args>(args)...); |
| 390 | } |
| 391 | |
| 392 | template <typename InputIt> |
| 393 | iterator insert(const_iterator insert_at, InputIt first, InputIt last) { |