| 684 | /// |
| 685 | template<int N> |
| 686 | EIGEN_DEVICE_FUNC |
| 687 | inline typename NColsBlockXpr<N>::Type rightCols(Index n = N) |
| 688 | { |
| 689 | return typename NColsBlockXpr<N>::Type(derived(), 0, cols() - n, rows(), n); |
| 690 | } |
| 691 | |
| 692 | /// This is the const version of rightCols<int>(). |
| 693 | template<int N> |
no test coverage detected