c++ operator overload and usage
- by MemoryLeak
bool operator()(Iterator it1, Iterator it2) const
{
return (*it1 < *it2);
}
Can someone explain this function for me, thanks!
is this means overload the operator ()? after overload this, how to use it ?