* \returns the number of rows */
| 736 | * \returns the number of rows |
| 737 | */ |
| 738 | inline Index rows() const |
| 739 | { |
| 740 | // return blockRows(); |
| 741 | return (IsColMajor ? innerSize() : outerSize()); |
| 742 | } |
| 743 | |
| 744 | /** |
| 745 | * \returns the number of cols |
no test coverage detected