\returns the number of rows of the matrix */
| 157 | public: |
| 158 | /** \returns the number of rows of the matrix */ |
| 159 | inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; } |
| 160 | /** \returns the number of columns of the matrix */ |
| 161 | inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; } |
| 162 |
no outgoing calls
no test coverage detected