Downcast Array to LargeListViewArray
(array: &dyn Array)
| 333 | |
| 334 | // Downcast Array to LargeListViewArray |
| 335 | pub fn as_large_list_view_array(array: &dyn Array) -> Result<&LargeListViewArray> { |
| 336 | Ok(downcast_value!(array, LargeListViewArray)) |
| 337 | } |
| 338 | |
| 339 | // Downcast Array to RunArray |
| 340 | pub fn as_run_array<T: RunEndIndexType>(array: &dyn Array) -> Result<&RunArray<T>> { |
no outgoing calls
searching dependent graphs…