()
| 83 | } |
| 84 | |
| 85 | public 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) { |
nothing calls this directly
no test coverage detected