| 117 | } |
| 118 | template <typename... Ix> |
| 119 | py::ssize_t offset_at(const arr &a, Ix... idx) { |
| 120 | return a.offset_at(idx...); |
| 121 | } |
| 122 | template <typename... Ix> |
| 123 | py::ssize_t offset_at_t(const arr_t &a, Ix... idx) { |
| 124 | return a.offset_at(idx...); |
no test coverage detected