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