pub fn complex32_fixed_shape_tensor_as_array_viewd<'a>(
field: &Field,
array: &'a FixedSizeListArray,
) -> Result<ArrayViewD<'a, Complex32>, NdarrowError>Expand description
Converts arrow.fixed_shape_tensor storage with ndarrow.complex32 element
type into an ArrayViewD<Complex32>.
§Does not allocate
The returned ndarray view borrows Arrow’s underlying complex scalar storage.
§Errors
Returns an error on nulls, type mismatches, invalid extension metadata, or shape incompatibility.