<nlohmann/ordered_map.hpp>
ordered_map() noexcept(noexcept(Container()));
» more...
Construct from Allocator
explicit
ordered_map(Allocator const& alloc) noexcept(noexcept(Container(alloc)));
» more...
ordered_map(
std::initializer_list<value_type> init,
Allocator const& alloc = Allocator());
» more...
template<class It>
ordered_map(
It first,
It last,
Allocator const& alloc = Allocator());
» more...