pub fn iter_primitive_array<'a, const N: usize, T: NativeType>(
    chunks: &'a Cow<'a, [Chunk]>,
    timeline: Timeline,
    component_name: ComponentName,
) -> impl Iterator<Item = ((TimeInt, RowId), &'a [[T; N]])> + 'a
where [T; N]: Pod,
Expand description

Iterate chunks as indexed primitive arrays.

See Chunk::iter_primitive_array for more information.