| 670 | |
| 671 | template <class OtherValue> |
| 672 | std::pair<iterator, bool> insert_unique(const OtherValue& obj) { |
| 673 | reserve(num_elements + 1); |
| 674 | return insert_unique_noresize(obj); |
| 675 | } |
| 676 | |
| 677 | template <class OtherValue> |
| 678 | iterator insert_equal(const OtherValue& obj) { |