| 566 | typename NRowsBlockXpr<internal::get_fixed_value<NRowsType>::value>::Type |
| 567 | #else |
| 568 | typename NRowsBlockXpr<...>::Type |
| 569 | #endif |
| 570 | topRows(NRowsType n) |
| 571 | { |
| 572 | return typename NRowsBlockXpr<internal::get_fixed_value<NRowsType>::value>::Type |
| 573 | (derived(), 0, 0, internal::get_runtime_value(n), cols()); |
| 574 | } |
| 575 | |
| 576 | /// This is the const version of topRows(NRowsType). |
| 577 | template<typename NRowsType> |
no test coverage detected