Overview
Let's start our discussion on ordered associative containers by defining some simple characteristics.
We'll cover the following...
fThe ordered associative containers std::map
and std::multimap
associate their key with a value. Both are defined in the header <map>
. ...