| 21029 | detail::enable_if_t < |
| 21030 | detail::has_from_json<basic_json_t, Array>::value, int > = 0 > |
| 21031 | Array get_to(T (&v)[N]) const // NOLINT(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays) |
| 21032 | noexcept(noexcept(JSONSerializer<Array>::from_json( |
| 21033 | std::declval<const basic_json_t&>(), v))) |
| 21034 | { |
| 21035 | JSONSerializer<Array>::from_json(*this, v); |
| 21036 | return v; |
| 21037 | } |
| 21038 | |
| 21039 | /// @brief get a reference value (implicit) |
| 21040 | /// @sa https://json.nlohmann.me/api/basic_json/get_ref/ |
nothing calls this directly
no test coverage detected