pub fn iter_component<'a, C: Component>(
    chunks: &'a Cow<'a, [Chunk]>,
    timeline: Timeline,
    component_name: ComponentName
) -> impl Iterator<Item = ((TimeInt, RowId), ChunkComponentIterItem<C>)> + 'a
Expand description

Iterate chunks as indexed deserialized batches.

See Chunk::iter_component for more information.