nlohmann::ordered_map::ordered_map

Constructors

Synopses

Declared in <nlohmann/ordered_map.hpp>
Default constructor
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...

Created with MrDocs