| 33 | func (s *SeriesEntry) Iterator(it chunkenc.Iterator) chunkenc.Iterator { return s.SampleIteratorFn(it) } |
| 34 | |
| 35 | type ChunkSeriesEntry struct { |
| 36 | Lset labels.Labels |
| 37 | ChunkIteratorFn func(chunks.Iterator) chunks.Iterator |
| 38 | } |
| 39 | |
| 40 | func (s *ChunkSeriesEntry) Labels() labels.Labels { return s.Lset } |
| 41 | func (s *ChunkSeriesEntry) Iterator(it chunks.Iterator) chunks.Iterator { return s.ChunkIteratorFn(it) } |
nothing calls this directly
no outgoing calls
no test coverage detected