NOLINTNEXTLINE(readability-const-return-type)
| 428 | |
| 429 | // NOLINTNEXTLINE(readability-const-return-type) |
| 430 | const array::array_proxy array::row(int index) const { |
| 431 | return this->operator()(index, span, span, span); |
| 432 | } |
| 433 | |
| 434 | array::array_proxy array::row(int index) { |
| 435 | return const_cast<const array *>(this)->row(index); |