(w io.Writer)
| 6 | |
| 7 | func (TimeRange) typ() string { return "timerange1" } |
| 8 | func (tr *TimeRange) writeForHash(w io.Writer) { |
| 9 | mustWriteForHash(w, tr.MinTimeMs) |
| 10 | mustWriteForHash(w, tr.MaxTimeMs) |
| 11 | mustWriteForHash(w, tr.ExtHash) |
| 12 | } |
| 13 | |
| 14 | // NewTimeRange creates a new TimeRange. |
| 15 | func NewTimeRange(minTimeMS, maxTimeMS uint64) *TimeRange { |
nothing calls this directly
no test coverage detected