I'm a little confused. You seem to be saying that you have a construct like this:
(psudocode)
struct Gizmo
{
Gizmo(int foo, string bar) : foo_(foo), bar_(bar) {};
int foo_;
string bar_;
};
Gizmo make_gizmo(int foo, string bar) { return Gizmo(foo,bar); }
std::map<string, Gizmo> my_gizmos;
my_gizmos["aaa"] = make_gizmo(1,"hello");
my_gizmos["bbb"] = make_gizmo(2,"there");
...and you want to be able to search for Gizmos by the value of foo_?
In that case, you have 2 main options.
1) Just write a custom functor yourself (again psudocude):
struct match_foo : public std::unary_function<...>
{
match_foo(int foo) : foo_(foo) {};
bool operator()(map<string,Gizmo>::const_iterator it) const
{
return it->second.foo_ == foo_;
}
private:
int foo_;
};
map<string,Gizmo>::const_iterator that = find_if(my_gizmos.begin(), my_gizmos.end(), match_foo(2));
};
2) Create an index of the foo_ values, mapping back to the Gizmo in the main map. This map might look something like this
...
a
map<int,map<string,Gizmo>::const_iterator> foo_index;
...which you would maintain any time you update the main map, my_gizmos.