| 537 | } |
| 538 | |
| 539 | inline uint32_t size() const |
| 540 | { |
| 541 | auto s = shape(); |
| 542 | if (s.empty()) { |
| 543 | throw invalid_operation("Can't get size of scalar array."); |
| 544 | } |
| 545 | return static_cast<uint32_t>(s[0]); |
| 546 | } |
| 547 | |
| 548 | inline bool empty() const |
| 549 | { |
no test coverage detected