| 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(); } |
| 275 | |
| 276 | protected: |
no test coverage detected