\returns the size of the storage major dimension, * i.e., the number of columns for a columns major matrix, and the number of rows otherwise */
| 182 | /** \returns the size of the storage major dimension, |
| 183 | * i.e., the number of columns for a columns major matrix, and the number of rows otherwise */ |
| 184 | Index outerSize() const { return (int(Flags)&RowMajorBit) ? this->rows() : this->cols(); } |
| 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(); } |
no test coverage detected