template<typename IM>
class lemon::ExtendFindEnum< IM >::ItemIt
ClassIt is a lemon style iterator for the components. It iterates on the items of a class. By example if you want to iterate on each items of each classes then you may write the next code.
for (ClassIt cit(ufe); cit !=
INVALID; ++cit) {
std::cout << "Class: ";
std::cout << toString(iit) << ' ' << std::endl;
}
std::cout << std::endl;
}
const Invalid INVALID
Invalid iterators.
Definition: base.cc:32
ItemIt(const ExtendFindEnum &ufe, int cls)
Constructor of the iterator.
Definition: unionfind.h:888