| 1340 | } |
| 1341 | |
| 1342 | void check_writeable() const { |
| 1343 | if (!writeable()) { |
| 1344 | throw std::domain_error("array is not writeable"); |
| 1345 | } |
| 1346 | } |
| 1347 | |
| 1348 | template <typename... Ix> |
| 1349 | void check_dimensions(Ix... index) const { |
nothing calls this directly
no outgoing calls
no test coverage detected