| 101 | } |
| 102 | |
| 103 | Iterator erase ( ConstIterator first, ConstIterator second) { return m_data.erase(first, second); } |
| 104 | |
| 105 | template< class InputIt > |
| 106 | void insert ( Iterator pos, InputIt first, InputIt last ) { m_data.insert(pos, first, last); } |
no outgoing calls
no test coverage detected