| 628 | /// |
| 629 | template<int N> |
| 630 | EIGEN_DEVICE_FUNC |
| 631 | inline typename NColsBlockXpr<N>::Type leftCols(Index n = N) |
| 632 | { |
| 633 | return typename NColsBlockXpr<N>::Type(derived(), 0, 0, rows(), n); |
| 634 | } |
| 635 | |
| 636 | /// This is the const version of leftCols<int>(). |
| 637 | template<int N> |
no test coverage detected