Not the usual question, I hope.
So prior to C++ 11, there are no guarantees that insert ordering is respected. That much I understand (e.g., http://www.cplusplus.com/reference/map/multimap/insert/ and how does the stl's multimap insert respect orderings?).
Is non-guarantee warning just regarding portability between versions and platforms?
Or does it mean it's possible that a seemingly well-behaved implementation can jumble its equal-key ordering under particular circumstances? And f the latter, is there a way to force this behavior?
Thanks.