Downcast this to a [`RunArray`] panicking if not possible
(&self)
| 976 | |
| 977 | /// Downcast this to a [`RunArray`] panicking if not possible |
| 978 | fn as_run<K: RunEndIndexType>(&self) -> &RunArray<K> { |
| 979 | self.as_run_opt().expect("run array") |
| 980 | } |
| 981 | |
| 982 | /// Downcasts this to a [`AnyDictionaryArray`] returning `None` if not possible |
| 983 | fn as_any_dictionary_opt(&self) -> Option<&dyn AnyDictionaryArray>; |