Function array_to_native_iter

Source
pub fn array_to_native_iter<A, T>(
    array: &dyn Array,
) -> Result<impl Iterator<Item = Option<T>>>
where A: ArrowPrimitiveType, A::Native: Into<T>, T: Clone,
Expand description

Directly converts an arrow PrimitiveArray to a rust primitive type

ยงErrors

Returns an error if the array cannot be cast to the target arrow type.