| 265 | |
| 266 | EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); } |
| 267 | EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } |
| 268 | |
| 269 | inline const SparseMatrixType& nestedExpression() const { return m_matrix; } |
| 270 | inline SparseMatrixType& nestedExpression() { return m_matrix; } |