(Object o)
| 161 | } |
| 162 | |
| 163 | public boolean equals(Object o){ |
| 164 | ISeq s = seq(); |
| 165 | if(s != null) |
| 166 | return s.equals(o); |
| 167 | else |
| 168 | return (o instanceof Sequential || o instanceof List) && RT.seq(o) == null; |
| 169 | } |
| 170 | |
| 171 | |
| 172 | // java.util.Collection implementation |