blob: 1a99b636f8895c6366bd3317635b1dcae5d68b1c [file] [log] [blame] [view]
# ordered_map
```cpp
template<class Key, class T, class IgnoredLess = std::less<Key>,
class Allocator = std::allocator<std::pair<const Key, T>>>
struct ordered_map : std::vector<std::pair<const Key, T>, Allocator>;
```