(IPersistentMap m)
| 126 | } |
| 127 | |
| 128 | static 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 | |
| 140 | static public class KeySeq extends ASeq{ |
| 141 | final ISeq seq; |
nothing calls this directly
no test coverage detected