| 109 | } |
| 110 | |
| 111 | float operator()(py::ssize_t i, py::ssize_t j) const { |
| 112 | return m_data[(size_t) (i * m_cols + j)]; |
| 113 | } |
| 114 | |
| 115 | float &operator()(py::ssize_t i, py::ssize_t j) { |
| 116 | return m_data[(size_t) (i * m_cols + j)]; |
nothing calls this directly
no outgoing calls
no test coverage detected