| 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/ |
nothing calls this directly
no test coverage detected