Downcast this to a [`BooleanArray`] panicking if not possible
(&self)
| 838 | |
| 839 | /// Downcast this to a [`BooleanArray`] panicking if not possible |
| 840 | fn as_boolean(&self) -> &BooleanArray { |
| 841 | self.as_boolean_opt().expect("boolean array") |
| 842 | } |
| 843 | |
| 844 | /// Downcast this to a [`PrimitiveArray`] returning `None` if not possible |
| 845 | fn as_primitive_opt<T: ArrowPrimitiveType>(&self) -> Option<&PrimitiveArray<T>>; |