()
| 161 | } |
| 162 | |
| 163 | public int hasheq(){ |
| 164 | int hash = this._hasheq; |
| 165 | if(hash == 0) { |
| 166 | int n; |
| 167 | hash = 1; |
| 168 | |
| 169 | for(n=0;n<count();++n) |
| 170 | { |
| 171 | hash = 31 * hash + Util.hasheq(nth(n)); |
| 172 | } |
| 173 | |
| 174 | this._hasheq = hash = Murmur3.mixCollHash(hash, n); |
| 175 | } |
| 176 | return hash; |
| 177 | } |
| 178 | |
| 179 | public Object get(int index){ |
| 180 | return nth(index); |
nothing calls this directly
no test coverage detected