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

Method hashUnordered

src/jvm/clojure/lang/Murmur3.java:114–124  ·  view source on GitHub ↗
(Iterable xs)

Source from the content-addressed store, hash-verified

112}
113
114public 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
126private static int mixK1(int k1){
127 k1 *= C1;

Callers 3

hasheqMethod · 0.95
hasheqMethod · 0.95
mapHasheqMethod · 0.95

Calls 2

hasheqMethod · 0.95
mixCollHashMethod · 0.95

Tested by

no test coverage detected