(Iterable xs)
| 112 | } |
| 113 | |
| 114 | public static int hashUnordered(Iterable xs){ |
| 115 | int hash = 0; |
| 116 | int n = 0; |
| 117 | for(Object x : xs) |
| 118 | { |
| 119 | hash += Util.hasheq(x); |
| 120 | ++n; |
| 121 | } |
| 122 | |
| 123 | return mixCollHash(hash, n); |
| 124 | } |
| 125 | |
| 126 | private static int mixK1(int k1){ |
| 127 | k1 *= C1; |
no test coverage detected