MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / get_to

Function get_to

Source/external/json.hpp:20987–20993  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20985 detail::enable_if_t <
20986 detail::has_from_json<basic_json_t, Array>::value, int > = 0 >
20987 Array get_to(T (&v)[N]) const // NOLINT(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
20988 noexcept(noexcept(JSONSerializer<Array>::from_json(
20989 std::declval<const basic_json_t&>(), v)))
20990 {
20991 JSONSerializer<Array>::from_json(*this, v);
20992 return v;
20993 }
20994
20995 /// @brief get a reference value (implicit)
20996 /// @sa https://json.nlohmann.me/api/basic_json/get_ref/

Callers

nothing calls this directly

Calls 1

from_jsonFunction · 0.85

Tested by

no test coverage detected