MCPcopy Index your code
hub / github.com/clojure/clojure / mixCollHash

Method mixCollHash

src/jvm/clojure/lang/Murmur3.java:94–99  ·  view source on GitHub ↗
(int hash, int count)

Source from the content-addressed store, hash-verified

92}
93
94public 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
101public static int hashOrdered(Iterable xs){
102 int n = 0;

Callers 3

hasheqMethod · 0.95
hashOrderedMethod · 0.95
hashUnorderedMethod · 0.95

Calls 3

mixK1Method · 0.95
mixH1Method · 0.95
fmixMethod · 0.95

Tested by

no test coverage detected