1
vote
Failing to use stl containers in templated functions/classes
I agree it is confusing. Without the typename keyword, the name would be considered a static member. The book C++ Templates by Vandevoorde and Josuttis explains this in deta …
1
vote
How is STL iterator equality established?
The equality test is specific to the type of iterator you are using, or may not exist at all. If you really want to know, you can always check the source code of the implementation of STL you are …
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 …
