linutza_aldys wrote: > hello! > > i'm trying to sort a list of objects using hash_multiset. i was > wondering if anybody worked with hash_multiset and if they had any > problems sorting more complex objects. > by it's nature, hash_multiset (not part of the C++ standard) is unordered, and you cannot muck with the order. IF you need it ordered, use std::multiset.
why are you using hash_multiset anyhow? Are you SURE your lookups exceed your insertions by enough to warrant its use? > thank you! > > > > To unsubscribe, send a blank message to <mailto:[EMAIL PROTECTED]>. > Yahoo! Groups Links > > > > >
