Function re_chunk::iter::slice_as_array_native
source · fn slice_as_array_native<'a, const N: usize, P, T>(
component_name: ComponentName,
array: &'a dyn ArrowArray,
component_offsets: impl Iterator<Item = (usize, usize)> + 'a,
) -> impl Iterator<Item = &'a [[T; N]]> + 'awhere
[T; N]: Pod,
P: ArrowPrimitiveType<Native = T>,
T: ArrowNativeType + Pod,
Expand description
The actual implementation of impl_array_native_type!
, so that we don’t have to work in a macro.