(Object obj)
| 58 | } |
| 59 | |
| 60 | public boolean equals(Object obj){ |
| 61 | |
| 62 | if(!(obj instanceof Sequential)) |
| 63 | return false; |
| 64 | ISeq ms = RT.seq(obj); |
| 65 | for(ISeq s = seq(); s != null; s = s.next(), ms = ms.next()) |
| 66 | { |
| 67 | if(ms == null || !Util.equals(s.first(), ms.first())) |
| 68 | return false; |
| 69 | } |
| 70 | return ms == null; |
| 71 | |
| 72 | } |
| 73 | |
| 74 | public int hashCode(){ |
| 75 | int hash = this._hash; |