| 140 | public: |
| 141 | template <class InputIterator> |
| 142 | void insert(InputIterator f, InputIterator l) { |
| 143 | rep.insert_equal(f, l); |
| 144 | } |
| 145 | |
| 146 | iterator insert(const value_type& obj) { |
| 147 | return rep.insert_equal(obj); |
nothing calls this directly
no test coverage detected