NOLINTNEXTLINE(readability-const-return-type)
| 475 | |
| 476 | // NOLINTNEXTLINE(readability-const-return-type) |
| 477 | const array::array_proxy array::slices(int first, int last) const { |
| 478 | seq idx(first, last, 1); |
| 479 | return this->operator()(span, span, idx, span); |
| 480 | } |
| 481 | |
| 482 | array::array_proxy array::slices(int first, int last) { |
| 483 | return const_cast<const array *>(this)->slices(first, last); |
no test coverage detected