()
| 116 | } |
| 117 | |
| 118 | public 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 | |
| 128 | static public int mapHasheq(IPersistentMap m) { |
| 129 | return Murmur3.hashUnordered(m); |
nothing calls this directly
no test coverage detected