MCPcopy Create free account
hub / github.com/apache/datafusion / as_large_list_view_array

Function as_large_list_view_array

datafusion/common/src/cast.rs:335–337  ·  view source on GitHub ↗

Downcast Array to LargeListViewArray

(array: &dyn Array)

Source from the content-addressed store, hash-verified

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

Callers 5

compute_array_dimsFunction · 0.85
array_slice_innerFunction · 0.85
array_reverse_innerFunction · 0.85
try_from_arrayMethod · 0.85

Calls

no outgoing calls

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…