get a value (explicit)
Declared in <nlohmann/json.hpp>
template<
typename T,
std::size_t N,
typename Array = T(&)[]>
requires detail::has_from_json<basic_json_t, Array>::value
Array
get_to(T(& v)[]) const noexcept(/* see-below */);
This function is potentially-throwing unless noexcept(JSONSerializer<Array, void>::from_json(std::declval<const basic_json_t &>(), v)).
reference to v
| Name | Description |
|---|---|
| v | array to write the converted result to |