\returns the size of the inner dimension according to the storage order, * i.e., the number of rows for a columns major matrix, and the number of cols otherwise */
| 185 | /** \returns the size of the inner dimension according to the storage order, |
| 186 | * i.e., the number of rows for a columns major matrix, and the number of cols otherwise */ |
| 187 | Index innerSize() const { return (int(Flags)&RowMajorBit) ? this->cols() : this->rows(); } |
| 188 | |
| 189 | bool isRValue() const { return m_isRValue; } |
| 190 | Derived& markAsRValue() { m_isRValue = true; return derived(); } |