| 438 | } |
| 439 | |
| 440 | type fakeSeriesIterator struct { |
| 441 | nsamples int64 |
| 442 | step int64 |
| 443 | idx int64 |
| 444 | } |
| 445 | |
| 446 | func newFakeSeriesIterator(nsamples, step int64) *fakeSeriesIterator { |
| 447 | return &fakeSeriesIterator{nsamples: nsamples, step: step, idx: -1} |
nothing calls this directly
no outgoing calls
no test coverage detected