4 Sep
2013
4 Sep
'13
6:11 a.m.
On 04/09/2013 07:15, Mathieu Champlon wrote:
Hello,
I'm trying to use Boost.MultiIndex to store my data. The idea is to have a kind of bidirectional multimap (I initially started with Boost.BiMap) which could model :
std::multimap< SomeType*, std::set< int > > left; std::multimap< int, SomeType*> right;
Sorry, that should be : std::map< SomeType*, std::set< int > > left; std::multimap< int, SomeType*> right; MAT.