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

Function as_list_view_array

datafusion/common/src/cast.rs:330–332  ·  view source on GitHub ↗

Downcast Array to ListViewArray

(array: &dyn Array)

Source from the content-addressed store, hash-verified

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

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…