JSON for Modern C++
3.7.3
|
◆ get() [4/6]
template<typename ValueTypeCV , typename ValueType = detail::uncvref_t<ValueTypeCV>, detail::enable_if_t< not std::is_same< basic_json_t, ValueType >::value and detail::has_non_default_from_json< basic_json_t, ValueType >::value, int > = 0>
Explicit type conversion between the JSON value and a compatible value which is not CopyConstructible and not DefaultConstructible. The value is converted by calling the json_serializer<ValueType> The function is equivalent to executing return JSONSerializer<ValueTypeCV>::from_json(*this);
This overloads is chosen if:
|