| 546 | } |
| 547 | |
| 548 | inline bool empty() const |
| 549 | { |
| 550 | if (is_dynamic()) { |
| 551 | return (size() == 0); |
| 552 | } |
| 553 | if (has_data_) { |
| 554 | return data().empty(); |
| 555 | } |
| 556 | auto sh = shape(); |
| 557 | return std::ranges::find(sh, 0u) != sh.end(); |
| 558 | } |
| 559 | |
| 560 | inline uint64_t volume() const |
| 561 | { |
no test coverage detected