Constructors

Synopses

Declared in <nlohmann/ordered_map.hpp>

Default constructor

ordered_map() noexcept(noexcept(Container()));

Construct from Allocator

explicit
ordered_map(Allocator const& alloc) noexcept(noexcept(Container(alloc)));
ordered_map(
    std::initializer_list<value_type> init,
    Allocator const& alloc = Allocator());
template<class It>
ordered_map(
    It first,
    It last,
    Allocator const& alloc = Allocator());

Created with MrDocs