| 40 | inline constexpr const T& operator()(int i, int j) const noexcept { return values[j*NR + i]; } |
| 41 | |
| 42 | constexpr T* data() noexcept { return &(*this)(0,0); } |
| 43 | inline constexpr const T* data() const noexcept { return values.data(); } |
| 44 | |
| 45 | // Convert to regular Matrix class |
no outgoing calls
no test coverage detected