| 119 | |
| 120 | template<typename InputIterator> |
| 121 | void insert(Iterator p, InputIterator first, InputIterator last) |
| 122 | { |
| 123 | m_Data.insert(p, first, last); |
| 124 | } |
| 125 | |
| 126 | Iterator Begin(); |
| 127 | ConstIterator Begin() const; |
no outgoing calls
no test coverage detected