| 108 | [[nodiscard]] typename ParticleVector::iterator begin () { return m_data.begin(); } |
| 109 | [[nodiscard]] typename ParticleVector::const_iterator begin () const { return m_data.begin(); } |
| 110 | [[nodiscard]] typename ParticleVector::const_iterator cbegin () const { return m_data.cbegin(); } |
| 111 | |
| 112 | [[nodiscard]] typename ParticleVector::iterator end () { return m_data.end(); } |
| 113 | [[nodiscard]] typename ParticleVector::const_iterator end () const { return m_data.end(); } |
no outgoing calls
no test coverage detected