| 1335 | |
| 1336 | template <typename... Ix> |
| 1337 | ssize_t byte_offset(Ix... index) const { |
| 1338 | check_dimensions(index...); |
| 1339 | return detail::byte_offset_unsafe(strides(), ssize_t(index)...); |
| 1340 | } |
| 1341 | |
| 1342 | void check_writeable() const { |
| 1343 | if (!writeable()) { |
nothing calls this directly
no test coverage detected