Lines Matching refs:from_json
37 #include <nlohmann/detail/conversions/from_json.hpp>
1557 `from_json()` method.
1562 JSONSerializer<ValueType>::from_json(*this, ret);
1568 - @ref json_serializer<ValueType> has a `from_json()` method of the form
1569 `void from_json(const basic_json&, ValueType&)`, and
1570 - @ref json_serializer<ValueType> does not have a `from_json()` method of
1571 the form `ValueType from_json(const basic_json&)`
1577 @throw what @ref json_serializer<ValueType> `from_json()` method throws
1594 JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>(), std::declval<ValueType&>())))
1597 JSONSerializer<ValueType>::from_json(*this, ret);
1608 `from_json()` method.
1612 return JSONSerializer<ValueType>::from_json(*this);
1617 - @ref json_serializer<ValueType> has a `from_json()` method of the form
1618 `ValueType from_json(const basic_json&)`
1621 `from_json()`, this one is chosen.
1627 @throw what @ref json_serializer<ValueType> `from_json()` method throws
1636 JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>())))
1638 return JSONSerializer<ValueType>::from_json(*this);
1651 @complexity Depending on the implementation of the called `from_json()`
1715 - Otherwise the value is converted by calling the @ref json_serializer<ValueType> `from_json()`
1723 @throw what @ref json_serializer<ValueType> `from_json()` method throws if conversion is required
1786 JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>(), v)))
1788 JSONSerializer<ValueType>::from_json(*this, v);
1810 noexcept(noexcept(JSONSerializer<Array>::from_json(
1813 JSONSerializer<Array>::from_json(*this, v);