|
libMVRgdtf e5d999f
A library for GDTF and MVR
|
namespace for Niels Lohmann More...
Namespaces | |
| namespace | detail |
| detail namespace with internal helper functions | |
Classes | |
| struct | adl_serializer |
| default JSONSerializer template argument More... | |
| class | basic_json |
| a class to store JSON values More... | |
| class | json_pointer |
| JSON Pointer. More... | |
| struct | ordered_map |
| class | byte_container_with_subtype |
| an internal type for a backed binary type More... | |
| struct | json_sax |
| SAX interface. More... | |
Typedefs | |
| using | json = basic_json<> |
| default JSON class | |
| using | ordered_json = basic_json<nlohmann::ordered_map> |
| ordered JSON class | |
| using | mapped_type = T |
| using | Container = std::vector<std::pair<const Key, T>, Allocator> |
Functions | |
| ordered_map (const Allocator &alloc=Allocator()) | |
| template<class It> | |
| ordered_map (It first, It last, const Allocator &alloc=Allocator()) | |
| ordered_map (std::initializer_list< T > init, const Allocator &alloc=Allocator()) | |
| std::pair< iterator, bool > | emplace (const key_type &key, T &&t) |
| T & | operator[] (const Key &key) |
| T & | at (const Key &key) |
| size_type | erase (const Key &key) |
| iterator | erase (iterator pos) |
| size_type | count (const Key &key) const |
| iterator | find (const Key &key) |
| std::pair< iterator, bool > | insert (value_type &&value) |
| std::pair< iterator, bool > | insert (const value_type &value) |
| NLOHMANN_BASIC_JSON_TPL_DECLARATION std::string | to_string (const NLOHMANN_BASIC_JSON_TPL &j) |
| user-defined to_string function for JSON values | |
Variables | |
| * | ordered_map |
| class class | Allocator |
namespace for Niels Lohmann
namespace to hold default to_json function
| using nlohmann::Container = std::vector<std::pair<const Key, T>, Allocator> |
| using nlohmann::json = basic_json<> |
default JSON class
This type is the default specialization of the basic_json class which uses the standard template types.
| using nlohmann::mapped_type = T |
ordered JSON class
This type preserves the insertion order of object keys.
| const T & nlohmann::at | ( | const Key & | key | ) |
| size_type nlohmann::count | ( | const Key & | key | ) | const |
| std::pair< iterator, bool > nlohmann::emplace | ( | const key_type & | key, |
| T && | t ) |
| size_type nlohmann::erase | ( | const Key & | key | ) |
| iterator nlohmann::erase | ( | iterator | pos | ) |
| const_iterator nlohmann::find | ( | const Key & | key | ) |
| std::pair< iterator, bool > nlohmann::insert | ( | const value_type & | value | ) |
| std::pair< iterator, bool > nlohmann::insert | ( | value_type && | value | ) |
| const T & nlohmann::operator[] | ( | const Key & | key | ) |
| nlohmann::ordered_map | ( | It | first, |
| It | last, | ||
| const Allocator & | alloc = Allocator() ) |
| NLOHMANN_BASIC_JSON_TPL_DECLARATION std::string nlohmann::to_string | ( | const NLOHMANN_BASIC_JSON_TPL & | j | ) |
user-defined to_string function for JSON values
This function implements a user-defined to_string for JSON objects.
| [in] | j | a JSON object |
| class class nlohmann::Allocator |
| * nlohmann::ordered_map |