NOLINTNEXTLINE(readability-const-return-type)
| 455 | |
| 456 | // NOLINTNEXTLINE(readability-const-return-type) |
| 457 | const array::array_proxy array::rows(int first, int last) const { |
| 458 | seq idx(first, last, 1); |
| 459 | return this->operator()(idx, span, span, span); |
| 460 | } |
| 461 | |
| 462 | array::array_proxy array::rows(int first, int last) { |
| 463 | return const_cast<const array *>(this)->rows(first, last); |
no test coverage detected