| 281 | |
| 282 | template <typename LightTraits> |
| 283 | auto CellularLightArray<LightTraits>::cellAtIndex(size_t index) const -> Cell const & { |
| 284 | starAssert(index < m_width * m_height); |
| 285 | return m_cells[index]; |
| 286 | } |
| 287 | |
| 288 | template <typename LightTraits> |
| 289 | auto CellularLightArray<LightTraits>::cellAtIndex(size_t index) -> Cell & { |
no outgoing calls
no test coverage detected