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

Method mapHasheq

src/jvm/clojure/lang/APersistentMap.java:128–138  ·  view source on GitHub ↗
(IPersistentMap m)

Source from the content-addressed store, hash-verified

126}
127
128static public int mapHasheq(IPersistentMap m) {
129 return Murmur3.hashUnordered(m);
130// int hash = 0;
131// for(ISeq s = m.seq(); s != null; s = s.next())
132// {
133// Map.Entry e = (Map.Entry) s.first();
134// hash += Util.hasheq(e.getKey()) ^
135// Util.hasheq(e.getValue());
136// }
137// return hash;
138}
139
140static public class KeySeq extends ASeq{
141 final ISeq seq;

Callers

nothing calls this directly

Calls 1

hashUnorderedMethod · 0.95

Tested by

no test coverage detected