| 1750 | } |
| 1751 | |
| 1752 | type IntervalMapperQueryRange struct { |
| 1753 | start, end, step uint64 |
| 1754 | startMs, endMs uint64 |
| 1755 | intervalCount int |
| 1756 | } |
| 1757 | |
| 1758 | func (i IntervalMapperQueryRange) Interval(ts uint64) int { |
| 1759 | return i.interval(ts, i.start, i.end, i.step) |
nothing calls this directly
no outgoing calls
no test coverage detected