Search Results

0
votes

compare function for upper_bound / lower_bound

I think what you need is std::bind2nd(std::less<MyClass>(), x). But, of course, the operator< must be defined for MyClass. Edit: oh and I think you will need a constr …