2021-12-29 15:41:01 +03:00
|
|
|
# <small>nlohmann::</small>adl_serializer
|
2020-08-16 15:27:26 +03:00
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
|
template<typename, typename>
|
|
|
|
|
struct adl_serializer;
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Serializer that uses ADL ([Argument-Dependent Lookup](https://en.cppreference.com/w/cpp/language/adl)) to choose
|
|
|
|
|
`to_json`/`from_json` functions from the types' namespaces.
|
|
|
|
|
|
|
|
|
|
It is implemented similar to
|
|
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
|
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
|
|
|
|
|
|
2021-12-29 15:41:01 +03:00
|
|
|
- [**from_json**](from_json.md) - convert a JSON value to any value type
|
|
|
|
|
- [**to_json**](to_json.md) - convert any value type to a JSON value
|
|
|
|
|
|
|
|
|
|
## Version history
|
|
|
|
|
|
|
|
|
|
- Added in version 2.1.0.
|