MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / get_to

Function get_to

3rd/nlohmann_json/single_include/nlohmann/json.hpp:20817–20823  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20815 detail::enable_if_t <
20816 detail::has_from_json<basic_json_t, Array>::value, int > = 0 >
20817 Array get_to(T (&v)[N]) const // NOLINT(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
20818 noexcept(noexcept(JSONSerializer<Array>::from_json(
20819 std::declval<const basic_json_t&>(), v)))
20820 {
20821 JSONSerializer<Array>::from_json(*this, v);
20822 return v;
20823 }
20824
20825 /*!
20826 @brief get a reference value (implicit)

Callers

nothing calls this directly

Calls 1

from_jsonFunction · 0.70

Tested by

no test coverage detected