(traceID []byte)
| 66 | } |
| 67 | |
| 68 | func (l *LiveTraces[T]) token(traceID []byte) uint64 { |
| 69 | l.hash.Reset() |
| 70 | l.hash.Write(traceID) |
| 71 | return l.hash.Sum64() |
| 72 | } |
| 73 | |
| 74 | func (l *LiveTraces[T]) Len() uint64 { |
| 75 | return uint64(len(l.Traces)) |
no test coverage detected