Downcast this to a [`MapArray`] panicking if not possible
(&self)
| 960 | |
| 961 | /// Downcast this to a [`MapArray`] panicking if not possible |
| 962 | fn as_map(&self) -> &MapArray { |
| 963 | self.as_map_opt().expect("map array") |
| 964 | } |
| 965 | |
| 966 | /// Downcast this to a [`DictionaryArray`] returning `None` if not possible |
| 967 | fn as_dictionary_opt<K: ArrowDictionaryKeyType>(&self) -> Option<&DictionaryArray<K>>; |