(int hash, int count)
| 92 | } |
| 93 | |
| 94 | public static int mixCollHash(int hash, int count){ |
| 95 | int h1 = seed; |
| 96 | int k1 = mixK1(hash); |
| 97 | h1 = mixH1(h1, k1); |
| 98 | return fmix(h1, count); |
| 99 | } |
| 100 | |
| 101 | public static int hashOrdered(Iterable xs){ |
| 102 | int n = 0; |
no test coverage detected