boost::multi_index_container, operations on std::set inside container
I've created a boost::multi_index_container ( containerSet ) over a container class and indexed the containerSet by std::string and std::set<int> . Is it possible to get the container, which store a specific int inside their set? Furthermore is it possible to get all container, which store at least one value between int1 and int2 within their set? #include <boost/multi_index_container.hpp> #include <boost/multi_index/member.hpp> #include <boost/multi_index/ordered_index.hpp> #include <boost/multi_index/hashed_index.hpp> #include <boost/format.hpp> #include <boost/lambda/core.hpp> #include