| 1799 | } |
| 1800 | |
| 1801 | type IntervalMapperInstant struct { |
| 1802 | start, end uint64 |
| 1803 | startMs, endMs uint64 |
| 1804 | } |
| 1805 | |
| 1806 | func (i IntervalMapperInstant) Interval(ts uint64) int { |
| 1807 | if !i.isTsValid(ts, i.start, i.end) { |
nothing calls this directly
no outgoing calls
no test coverage detected