\returns the number of columns 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 | |
| 169 | /** \returns the number of rows (resp. columns) of the matrix if the storage order column major (resp. row major) */ |
| 170 | inline Index innerSize() const { return m_innerSize; } |
no outgoing calls
no test coverage detected