NOLINTNEXTLINE(readability-const-return-type)
| 446 | |
| 447 | // NOLINTNEXTLINE(readability-const-return-type) |
| 448 | const array::array_proxy array::slice(int index) const { |
| 449 | return this->operator()(span, span, index, span); |
| 450 | } |
| 451 | |
| 452 | array::array_proxy array::slice(int index) { |
| 453 | return const_cast<const array *>(this)->slice(index); |
no test coverage detected