| 793 | typename NColsBlockXpr<internal::get_fixed_value<NColsType>::value>::Type |
| 794 | #else |
| 795 | typename NColsBlockXpr<...>::Type |
| 796 | #endif |
| 797 | leftCols(NColsType n) |
| 798 | { |
| 799 | return typename NColsBlockXpr<internal::get_fixed_value<NColsType>::value>::Type |
| 800 | (derived(), 0, 0, rows(), internal::get_runtime_value(n)); |
| 801 | } |
| 802 | |
| 803 | /// This is the const version of leftCols(NColsType). |
| 804 | template<typename NColsType> |
no test coverage detected