1# ordered_map 2 3```cpp 4template<class Key, class T, class IgnoredLess = std::less<Key>, 5 class Allocator = std::allocator<std::pair<const Key, T>>> 6struct ordered_map : std::vector<std::pair<const Key, T>, Allocator>; 7``` 8