1
0
mirror of https://github.com/nlohmann/json.git synced 2025-04-25 09:42:30 +03:00
json/doc/mkdocs/docs/api/ordered_map.md
Niels Lohmann 178125ff9b
📝 add docset
2020-08-13 10:52:20 +02:00

8 lines
229 B
Markdown

# 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>;
```