\returns the number of rows of the matrix */
| 129 | |
| 130 | /** \returns the number of rows of the matrix */ |
| 131 | inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; } |
| 132 | /** \returns the number of columns of the matrix */ |
| 133 | inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; } |
| 134 |
no outgoing calls
no test coverage detected