At returns the current float element of the iterator.
()
| 142 | |
| 143 | // At returns the current float element of the iterator. |
| 144 | func (b *BufferedSeriesIterator) At() (int64, float64) { |
| 145 | return b.it.At() |
| 146 | } |
| 147 | |
| 148 | // AtHistogram returns the current histogram element of the iterator. |
| 149 | func (b *BufferedSeriesIterator) AtHistogram(fh *histogram.Histogram) (int64, *histogram.Histogram) { |