
Suppose I have a map (m) and a sorted vector of strings (v).
The map's key is a string, and the map's value is foobar.
I wish to compare map's keys with the vector's values and detect if they all
match:
(*mit).first == *vit
and wish to do it with STL/Boost algo and functors.
So I am starting with this:
equal(m.begin(),
m.end(),
v.begin(),
boost::bind(std::equa_to<string>(),
std::select1st