| 269 | inline const SparseMatrixType& nestedExpression() const { return m_matrix; } |
| 270 | inline SparseMatrixType& nestedExpression() { return m_matrix; } |
| 271 | Index startRow() const { return IsRowMajor ? m_outerStart : 0; } |
| 272 | Index startCol() const { return IsRowMajor ? 0 : m_outerStart; } |
| 273 | Index blockRows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); } |
| 274 | Index blockCols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } |
no outgoing calls
no test coverage detected