Searched defs:ordered_map (Results 1 – 3 of 3) sorted by relevance
/third_party/json/include/nlohmann/ |
D | ordered_map.hpp | 29 struct ordered_map : std::vector<std::pair<const Key, T>, Allocator> struct 46 ordered_map() noexcept(noexcept(Container())) : Container{} {} in ordered_map() argument 47 …explicit ordered_map(const Allocator& alloc) noexcept(noexcept(Container(alloc))) : Container{allo… in ordered_map() argument 49 ordered_map(It first, It last, const Allocator& alloc = Allocator()) in ordered_map() function 51 ordered_map(std::initializer_list<value_type> init, const Allocator& alloc = Allocator() ) in ordered_map() function 54 std::pair<iterator, bool> emplace(const key_type& key, T&& t) in emplace() 69 std::pair<iterator, bool> emplace(KeyType && key, T && t) in emplace() 82 T& operator[](const key_type& key) in operator []() 89 T & operator[](KeyType && key) in operator []() 94 const T& operator[](const key_type& key) const in operator []() [all …]
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 18909 struct ordered_map : std::vector<std::pair<const Key, T>, Allocator> struct 18926 ordered_map() noexcept(noexcept(Container())) : Container{} {} in ordered_map() function 18927 …explicit ordered_map(const Allocator& alloc) noexcept(noexcept(Container(alloc))) : Container{allo… in ordered_map() argument 18929 ordered_map(It first, It last, const Allocator& alloc = Allocator()) in ordered_map() argument 18931 ordered_map(std::initializer_list<value_type> init, const Allocator& alloc = Allocator() ) in ordered_map() argument 18934 std::pair<iterator, bool> emplace(const key_type& key, T&& t) in emplace() 18949 std::pair<iterator, bool> emplace(KeyType && key, T && t) in emplace() 18962 T& operator[](const key_type& key) in operator []() 18969 T & operator[](KeyType && key) in operator []() 18974 const T& operator[](const key_type& key) const in operator []() [all …]
|
/third_party/json/tests/abi/include/nlohmann/ |
D | json_v3_10_5.hpp | 17039 struct ordered_map : std::vector<std::pair<const Key, T>, Allocator> struct 17041 using key_type = Key; 17042 using mapped_type = T; 17043 using Container = std::vector<std::pair<const Key, T>, Allocator>; 17044 using iterator = typename Container::iterator; 17045 using const_iterator = typename Container::const_iterator; 17046 using size_type = typename Container::size_type; 17047 using value_type = typename Container::value_type; 17051 ordered_map(const Allocator& alloc = Allocator()) : Container{alloc} {} in ordered_map() function 17053 ordered_map(It first, It last, const Allocator& alloc = Allocator()) in ordered_map() function [all …]
|