mirror of
https://github.com/nlohmann/json.git
synced 2024-12-17 23:57:52 +08:00
8 lines
229 B
Markdown
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>;
|
||
|
```
|