(Object o)
| 240 | } |
| 241 | |
| 242 | public boolean contains(Object o){ |
| 243 | for(ISeq s = seq(); s != null; s = s.next()) |
| 244 | { |
| 245 | if(Util.equiv(s.first(), o)) |
| 246 | return true; |
| 247 | } |
| 248 | return false; |
| 249 | } |
| 250 | |
| 251 | public Iterator iterator(){ |
| 252 | return new Iterator(){ |
no test coverage detected