| 935 | |
| 936 | template <typename I> |
| 937 | dict array::concrete_holder_<I>::dict_value(int64_t index) const |
| 938 | { |
| 939 | if constexpr (impl::has_value_member_function_v<I, dict>) { |
| 940 | ASSERT(impl_.dtype() == dtype::object); |
| 941 | return impl_.value(index); |
| 942 | } else { |
| 943 | throw invalid_operation("Can't convert array value to dict."); |
| 944 | } |
| 945 | } |
| 946 | |
| 947 | template <typename I> |
| 948 | array array::concrete_holder_<I>::get(int64_t index) const |
no test coverage detected