Is it possible for a multi-frame to contain pairs inside it?
Yes it is possible.
How will this multimap be sorted?
Key / first pair (i.e. first the first element of the first pair, then the second element of the first pair).
Also, how would I access the individual contents of each pair?
multimap<pair <T1, T2>, pair<T3, T4> >::iterator it = mymultimap.begin();
it->first.first;
it->first.second;
it->second.first;
it->second.second;
, , !
:
, , , , .