mirror of
https://github.com/nlohmann/json.git
synced 2026-02-24 20:36:27 +00:00
* ✏️ fix typos Signed-off-by: Niels Lohmann <mail@nlohmann.me> * ✏️ address review comments Signed-off-by: Niels Lohmann <mail@nlohmann.me> * ✏️ address review comments Signed-off-by: Niels Lohmann <mail@nlohmann.me> --------- Signed-off-by: Niels Lohmann <mail@nlohmann.me>
910 B
910 B
nlohmann::adl_serializer
template<typename, typename>
struct adl_serializer;
Serializer that uses ADL (Argument-Dependent Lookup) to choose
to_json/from_json functions from the types' namespaces.
It is implemented similarly to
template<typename ValueType>
struct adl_serializer {
template<typename BasicJsonType>
static void to_json(BasicJsonType& j, const T& value) {
// calls the "to_json" method in T's namespace
}
template<typename BasicJsonType>
static void from_json(const BasicJsonType& j, T& value) {
// same thing, but with the "from_json" method
}
};
Member functions
Version history
- Added in version 2.1.0.