default JSONSerializer template argument

Synopsis

Declared in <nlohmann/adl_serializer.hpp>

template<
    typename T = void,
    typename SFINAE = void>
struct adl_serializer;

Static Member Functions

Name

Description

from_json

convert a JSON value to any value type

to_json

convert any value type to a JSON value

Description

This serializer ignores the template arguments and uses ADL(argument‐dependent lookup)for serialization.

Created with MrDocs