| 240 | float &operator[](size_t index) { return m_data[index]; } |
| 241 | |
| 242 | bool contains(float v) const { |
| 243 | for (size_t i = 0; i < m_size; ++i) { |
| 244 | if (v == m_data[i]) { |
| 245 | return true; |
| 246 | } |
| 247 | } |
| 248 | return false; |
| 249 | } |
| 250 | |
| 251 | Sequence reversed() const { |
| 252 | Sequence result(m_size); |
no outgoing calls
no test coverage detected