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

Function as_boolean_array

datafusion/common/src/cast.rs:153–155  ·  view source on GitHub ↗

Downcast Array to BooleanArray

(array: &dyn Array)

Source from the content-addressed store, hash-verified

151
152// Downcast Array to BooleanArray
153pub fn as_boolean_array(array: &dyn Array) -> Result<&BooleanArray> {
154 Ok(downcast_value!(array, BooleanArray))
155}
156
157// Downcast Array to ListArray
158pub fn as_list_array(array: &dyn Array) -> Result<&ListArray> {

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…