Downcast Array to LargeListArray
(array: &dyn Array)
| 182 | |
| 183 | // Downcast Array to LargeListArray |
| 184 | pub fn as_large_list_array(array: &dyn Array) -> Result<&LargeListArray> { |
| 185 | Ok(downcast_value!(array, LargeListArray)) |
| 186 | } |
| 187 | |
| 188 | // Downcast Array to PrimitiveArray |
| 189 | pub fn as_primitive_array<T: ArrowPrimitiveType>( |
no outgoing calls
searching dependent graphs…