| 628 | dict dict_value(int64_t index) const; |
| 629 | |
| 630 | inline icm::shape shape() const |
| 631 | { |
| 632 | if (mode_ == mode_t::scalar_inplace) { |
| 633 | return icm::shape(); |
| 634 | } |
| 635 | check_null(); |
| 636 | return holder()->shape(); |
| 637 | } |
| 638 | |
| 639 | inline bool has_data() const noexcept |
| 640 | { |
no test coverage detected