pub fn iter_slices<'a, T: 'a + ChunkComponentSlicer>(
chunks: &'a Cow<'a, [Chunk]>,
timeline: TimelineName,
component_name: ComponentName,
) -> impl Iterator<Item = ((TimeInt, RowId), T::Item<'a>)> + 'a
Expand description
Iterate chunks
as indexed primitives.
See Chunk::iter_slices
for more information.