(Object o)
| 201 | } |
| 202 | |
| 203 | public boolean contains(Object o){ |
| 204 | for(ISeq s = seq(); s != null; s = s.next()) |
| 205 | { |
| 206 | if(Util.equiv(s.first(), o)) |
| 207 | return true; |
| 208 | } |
| 209 | return false; |
| 210 | } |
| 211 | |
| 212 | |
| 213 | public Iterator iterator(){ |
no test coverage detected