| 587 | }*/ |
| 588 | |
| 589 | HashSet::HashSetIterator::HashSetIterator(HashSet *set) |
| 590 | { |
| 591 | this->set = set; |
| 592 | node = NULL; |
| 593 | pos = -1; |
| 594 | gotoNext(); |
| 595 | } |
| 596 | |
| 597 | void HashSet::HashSetIterator::gotoNext() |
| 598 | { |
nothing calls this directly
no outgoing calls
no test coverage detected