Downcast Array to ListViewArray
(array: &dyn Array)
| 328 | |
| 329 | // Downcast Array to ListViewArray |
| 330 | pub fn as_list_view_array(array: &dyn Array) -> Result<&ListViewArray> { |
| 331 | Ok(downcast_value!(array, ListViewArray)) |
| 332 | } |
| 333 | |
| 334 | // Downcast Array to LargeListViewArray |
| 335 | pub fn as_large_list_view_array(array: &dyn Array) -> Result<&LargeListViewArray> { |
no outgoing calls
searching dependent graphs…