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

Method hashCombine

src/jvm/clojure/lang/Util.java:180–184  ·  view source on GitHub ↗
(int seed, int hash)

Source from the content-addressed store, hash-verified

178}
179
180static public int hashCombine(int seed, int hash){
181 //a la boost
182 seed ^= hash + 0x9e3779b9 + (seed << 6) + (seed >> 2);
183 return seed;
184}
185
186static public boolean isPrimitive(Class c){
187 return c != null && c.isPrimitive() && !(c == Void.TYPE);

Callers 2

hashCodeMethod · 0.95
hasheqMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected