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

Function as_uint64_array

datafusion/common/src/cast.rs:98–100  ·  view source on GitHub ↗

Downcast Array to UInt64Array

(array: &dyn Array)

Source from the content-addressed store, hash-verified

96
97// Downcast Array to UInt64Array
98pub fn as_uint64_array(array: &dyn Array) -> Result<&UInt64Array> {
99 Ok(downcast_value!(array, UInt64Array))
100}
101
102// Downcast Array to Decimal32Array
103pub fn as_decimal32_array(array: &dyn Array) -> Result<&Decimal32Array> {

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…