(&self)
| 1003 | } |
| 1004 | |
| 1005 | fn as_primitive_opt<T: ArrowPrimitiveType>(&self) -> Option<&PrimitiveArray<T>> { |
| 1006 | self.as_any().downcast_ref() |
| 1007 | } |
| 1008 | |
| 1009 | fn as_bytes_opt<T: ByteArrayType>(&self) -> Option<&GenericByteArray<T>> { |
| 1010 | self.as_any().downcast_ref() |
no test coverage detected