(t uint64, in ...interface{})
| 33 | } |
| 34 | |
| 35 | func NewHash(t uint64, in ...interface{}) uint64 { |
| 36 | return AddToHash(InitHash(t), in...) |
| 37 | } |
| 38 | |
| 39 | func AddToHash(h uint64, in ...interface{}) uint64 { |
| 40 | for i := range in { |
no test coverage detected
searching dependent graphs…