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

Method hasheq

src/jvm/clojure/lang/APersistentMap.java:118–126  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

116}
117
118public int hasheq(){
119 int cached = this._hasheq;
120 if(cached == 0)
121 {
122 //this._hasheq = mapHasheq(this);
123 this._hasheq = cached = Murmur3.hashUnordered(this);
124 }
125 return cached;
126}
127
128static public int mapHasheq(IPersistentMap m) {
129 return Murmur3.hashUnordered(m);

Callers

nothing calls this directly

Calls 1

hashUnorderedMethod · 0.95

Tested by

no test coverage detected