()
| 110 | } |
| 111 | |
| 112 | public int hasheq(){ |
| 113 | int cached = this._hasheq; |
| 114 | if(cached == 0){ |
| 115 | // int hash = 0; |
| 116 | // for(ISeq s = seq(); s != null; s = s.next()) |
| 117 | // { |
| 118 | // Object e = s.first(); |
| 119 | // hash += Util.hasheq(e); |
| 120 | // } |
| 121 | // this._hasheq = hash; |
| 122 | this._hasheq = cached = Murmur3.hashUnordered(this); |
| 123 | } |
| 124 | return cached; |
| 125 | } |
| 126 | |
| 127 | public Object[] toArray(){ |
| 128 | return RT.seqToArray(seq()); |
nothing calls this directly
no test coverage detected