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

Function as_map_array

datafusion/common/src/cast.rs:196–198  ·  view source on GitHub ↗

Downcast Array to MapArray

(array: &dyn Array)

Source from the content-addressed store, hash-verified

194
195// Downcast Array to MapArray
196pub fn as_map_array(array: &dyn Array) -> Result<&MapArray> {
197 Ok(downcast_value!(array, MapArray))
198}
199
200// Downcast Array to NullArray
201pub fn as_null_array(array: &dyn Array) -> Result<&NullArray> {

Callers 8

map_values_innerFunction · 0.85
cardinality_innerFunction · 0.85
map_keys_innerFunction · 0.85
map_entries_innerFunction · 0.85
map_extract_innerFunction · 0.85
process_map_arrayFunction · 0.85

Calls

no outgoing calls

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…