| 383 | |
| 384 | inline Index index() const { return Base::index() - (IsRowMajor ? m_block.m_startCol.value() : m_block.m_startRow.value()); } |
| 385 | inline Index outer() const { return Base::outer() - (IsRowMajor ? m_block.m_startRow.value() : m_block.m_startCol.value()); } |
| 386 | inline Index row() const { return Base::row() - m_block.m_startRow.value(); } |
| 387 | inline Index col() const { return Base::col() - m_block.m_startCol.value(); } |
| 388 |