(Object o)
| 479 | } |
| 480 | |
| 481 | public boolean contains(Object o){ |
| 482 | for(ISeq s = seq(); s != null; s = s.next()) |
| 483 | { |
| 484 | if(Util.equiv(s.first(), o)) |
| 485 | return true; |
| 486 | } |
| 487 | return false; |
| 488 | } |
| 489 | |
| 490 | public int length(){ |
| 491 | return count(); |
no test coverage detected