\returns the number of rows of the matrix */
| 163 | |
| 164 | /** \returns the number of rows of the matrix */ |
| 165 | inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; } |
| 166 | /** \returns the number of columns of the matrix */ |
| 167 | inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; } |
| 168 |
no outgoing calls
no test coverage detected