(b []byte, i int)
| 19 | } |
| 20 | |
| 21 | func load64(b []byte, i int) uint64 { |
| 22 | return le.Load64(b, i) |
| 23 | } |
| 24 | |
| 25 | // hash6 returns the hash of the lowest 6 bytes of u to fit in a hash table with h bits. |
| 26 | // Preferably h should be a constant and should always be <64. |
no test coverage detected
searching dependent graphs…