| 868 | typename NColsBlockXpr<internal::get_fixed_value<NColsType>::value>::Type |
| 869 | #else |
| 870 | typename NColsBlockXpr<...>::Type |
| 871 | #endif |
| 872 | rightCols(NColsType n) |
| 873 | { |
| 874 | return typename NColsBlockXpr<internal::get_fixed_value<NColsType>::value>::Type |
| 875 | (derived(), 0, cols() - internal::get_runtime_value(n), rows(), internal::get_runtime_value(n)); |
| 876 | } |
| 877 | |
| 878 | /// This is the const version of rightCols(NColsType). |
| 879 | template<typename NColsType> |
no test coverage detected