(&self)
| 999 | impl private::Sealed for dyn Array + '_ {} |
| 1000 | impl AsArray for dyn Array + '_ { |
| 1001 | fn as_boolean_opt(&self) -> Option<&BooleanArray> { |
| 1002 | self.as_any().downcast_ref() |
| 1003 | } |
| 1004 | |
| 1005 | fn as_primitive_opt<T: ArrowPrimitiveType>(&self) -> Option<&PrimitiveArray<T>> { |
| 1006 | self.as_any().downcast_ref() |
no test coverage detected