| 104 | |
| 105 | template< class InputIt > |
| 106 | void insert ( Iterator pos, InputIt first, InputIt last ) { m_data.insert(pos, first, last); } |
| 107 | |
| 108 | [[nodiscard]] typename ParticleVector::iterator begin () { return m_data.begin(); } |
| 109 | [[nodiscard]] typename ParticleVector::const_iterator begin () const { return m_data.begin(); } |
no outgoing calls
no test coverage detected