()
| 86 | } |
| 87 | |
| 88 | public int hasheq() { |
| 89 | int cached = this._hasheq; |
| 90 | if(cached == 0) |
| 91 | { |
| 92 | // int hash = 1; |
| 93 | // for(ISeq s = seq(); s != null; s = s.next()) |
| 94 | // { |
| 95 | // hash = 31 * hash + Util.hasheq(s.first()); |
| 96 | // } |
| 97 | // this._hasheq = hash; |
| 98 | this._hasheq = cached = Murmur3.hashOrdered(this); |
| 99 | } |
| 100 | return cached; |
| 101 | } |
| 102 | |
| 103 | public Object peek(){ |
| 104 | return RT.first(f); |
nothing calls this directly
no test coverage detected