\returns the number of rows of the matrix */
| 134 | |
| 135 | /** \returns the number of rows of the matrix */ |
| 136 | inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; } |
| 137 | /** \returns the number of columns of the matrix */ |
| 138 | inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; } |
| 139 |
no outgoing calls
no test coverage detected