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

Method hasheq

src/jvm/clojure/lang/ASeq.java:85–97  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

83}
84
85public int hasheq(){
86 if(_hasheq == 0)
87 {
88// int hash = 1;
89// for(ISeq s = seq(); s != null; s = s.next())
90// {
91// hash = 31 * hash + Util.hasheq(s.first());
92// }
93// this._hasheq = hash;
94 _hasheq = Murmur3.hashOrdered(this);
95 }
96 return _hasheq;
97}
98
99
100//public Object reduce(IFn f) {

Callers

nothing calls this directly

Calls 1

hashOrderedMethod · 0.95

Tested by

no test coverage detected