#include <json.hpp>
|
template<typename BasicJsonType , typename T > |
void | operator() (BasicJsonType &j, T &&val) const noexcept(noexcept(std::declval< to_json_fn >().call(j, std::forward< T >(val), priority_tag< 1 >{}))) |
|
|
template<typename BasicJsonType , typename T > |
auto | call (BasicJsonType &j, T &&val, priority_tag< 1 >) const noexcept(noexcept(to_json(j, std::forward< T >(val)))) -> decltype(to_json(j, std::forward< T >(val)), void()) |
|
template<typename BasicJsonType , typename T > |
void | call (BasicJsonType &, T &&, priority_tag< 0 >) const noexcept |
|
Definition at line 1531 of file json.hpp.
template<typename BasicJsonType , typename T >
auto nlohmann::detail::to_json_fn::call |
( |
BasicJsonType & |
j, |
|
|
T && |
val, |
|
|
priority_tag< 1 > |
|
|
) |
| const -> decltype(to_json(j, std::forward<T>(val)), void())
|
|
inlineprivatenoexcept |
template<typename BasicJsonType , typename T >
void nlohmann::detail::to_json_fn::call |
( |
BasicJsonType & |
, |
|
|
T && |
, |
|
|
priority_tag< 0 > |
|
|
) |
| const |
|
inlineprivatenoexcept |
template<typename BasicJsonType , typename T >
void nlohmann::detail::to_json_fn::operator() |
( |
BasicJsonType & |
j, |
|
|
T && |
val |
|
) |
| const |
|
inlinenoexcept |
The documentation for this struct was generated from the following file: