Template
|
ordered_map< Key, T, IgnoredLess, Allocator > Struct Template Reference
a minimal map-like container that preserves insertion order More...
#include <json.hpp>
Inherits std::vector< std::pair< const Key, T >, std::allocator< std::pair< const Key, T > > >.
Public Types | |
using | key_type = Key |
using | mapped_type = T |
using | Container = std::vector< std::pair< const Key, T >, Allocator > |
using | iterator = typename Container::iterator |
using | const_iterator = typename Container::const_iterator |
using | size_type = typename Container::size_type |
using | value_type = typename Container::value_type |
using | key_compare = std::equal_to< Key > |
template<typename InputIt > | |
using | require_input_iter = typename std::enable_if< std::is_convertible< typename std::iterator_traits< InputIt >::iterator_category, std::input_iterator_tag >::value >::type |
Public Member Functions | |
ordered_map () noexcept(noexcept(Container())) | |
ordered_map (const Allocator &alloc) noexcept(noexcept(Container(alloc))) | |
template<class It > | |
ordered_map (It first, It last, const Allocator &alloc=Allocator()) | |
ordered_map (std::initializer_list< value_type > init, const Allocator &alloc=Allocator()) | |
std::pair< iterator, bool > | emplace (const key_type &key, T &&t) |
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0> | |
std::pair< iterator, bool > | emplace (KeyType &&key, T &&t) |
T & | operator[] (const key_type &key) |
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0> | |
T & | operator[] (KeyType &&key) |
const T & | operator[] (const key_type &key) const |
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0> | |
const T & | operator[] (KeyType &&key) const |
T & | at (const key_type &key) |
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0> | |
T & | at (KeyType &&key) |
const T & | at (const key_type &key) const |
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0> | |
const T & | at (KeyType &&key) const |
size_type | erase (const key_type &key) |
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0> | |
size_type | erase (KeyType &&key) |
iterator | erase (iterator pos) |
iterator | erase (iterator first, iterator last) |
size_type | count (const key_type &key) const |
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0> | |
size_type | count (KeyType &&key) const |
iterator | find (const key_type &key) |
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0> | |
iterator | find (KeyType &&key) |
const_iterator | find (const key_type &key) const |
std::pair< iterator, bool > | insert (value_type &&value) |
std::pair< iterator, bool > | insert (const value_type &value) |
template<typename InputIt , typename = require_input_iter<InputIt>> | |
void | insert (InputIt first, InputIt last) |
Detailed Description
template<class Key, class T, class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
struct ordered_map< Key, T, IgnoredLess, Allocator >
struct ordered_map< Key, T, IgnoredLess, Allocator >
a minimal map-like container that preserves insertion order
ordered_map: a minimal map-like container that preserves insertion order for use within nlohmann::basic_json<ordered_map>
Member Typedef Documentation
◆ const_iterator
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
using ordered_map< Key, T, IgnoredLess, Allocator >::const_iterator = typename Container::const_iterator |
◆ Container
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
using ordered_map< Key, T, IgnoredLess, Allocator >::Container = std::vector<std::pair<const Key, T>, Allocator> |
◆ iterator
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
using ordered_map< Key, T, IgnoredLess, Allocator >::iterator = typename Container::iterator |
◆ key_compare
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
using ordered_map< Key, T, IgnoredLess, Allocator >::key_compare = std::equal_to<Key> |
◆ key_type
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
using ordered_map< Key, T, IgnoredLess, Allocator >::key_type = Key |
◆ mapped_type
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
using ordered_map< Key, T, IgnoredLess, Allocator >::mapped_type = T |
◆ require_input_iter
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<typename InputIt >
using ordered_map< Key, T, IgnoredLess, Allocator >::require_input_iter = typename std::enable_if<std::is_convertible<typename std::iterator_traits<InputIt>::iterator_category, std::input_iterator_tag>::value>::type |
◆ size_type
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
using ordered_map< Key, T, IgnoredLess, Allocator >::size_type = typename Container::size_type |
◆ value_type
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
using ordered_map< Key, T, IgnoredLess, Allocator >::value_type = typename Container::value_type |
Constructor & Destructor Documentation
◆ ordered_map() [1/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inlinenoexcept |
◆ ordered_map() [2/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inlineexplicitnoexcept |
◆ ordered_map() [3/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<class It >
|
inline |
◆ ordered_map() [4/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
Member Function Documentation
◆ at() [1/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ at() [2/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ at() [3/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0>
|
inline |
◆ at() [4/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0>
|
inline |
◆ count() [1/2]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ count() [2/2]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0>
|
inline |
◆ emplace() [1/2]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ emplace() [2/2]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0>
|
inline |
◆ erase() [1/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ erase() [2/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ erase() [3/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ erase() [4/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0>
|
inline |
◆ find() [1/3]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ find() [2/3]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ find() [3/3]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0>
|
inline |
◆ insert() [1/3]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ insert() [2/3]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<typename InputIt , typename = require_input_iter<InputIt>>
|
inline |
◆ insert() [3/3]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ operator[]() [1/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ operator[]() [2/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
|
inline |
◆ operator[]() [3/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0>
|
inline |
◆ operator[]() [4/4]
template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<class KeyType , detail::enable_if_t< detail::is_usable_as_key_type< key_compare, key_type, KeyType >::value, int > = 0>
|
inline |
The documentation for this struct was generated from the following file:
- include/nlohmann/json.hpp
Generated by 1.9.8