(arr: &dyn Array)
| 708 | /// [`LargeListArray`], panicking on failure. |
| 709 | #[inline] |
| 710 | pub fn as_large_list_array(arr: &dyn Array) -> &LargeListArray { |
| 711 | as_generic_list_array::<i64>(arr) |
| 712 | } |
| 713 | |
| 714 | /// Force downcast of an [`Array`], such as an [`ArrayRef`] to |
| 715 | /// [`GenericBinaryArray<S>`], panicking on failure. |
no outgoing calls
no test coverage detected