| 1329 | friend struct detail::npy_format_descriptor; |
| 1330 | |
| 1331 | void fail_dim_check(ssize_t dim, const std::string &msg) const { |
| 1332 | throw index_error(msg + ": " + std::to_string(dim) + " (ndim = " + std::to_string(ndim()) |
| 1333 | + ')'); |
| 1334 | } |
| 1335 | |
| 1336 | template <typename... Ix> |
| 1337 | ssize_t byte_offset(Ix... index) const { |
nothing calls this directly
no outgoing calls
no test coverage detected