| 19611 | detail::enable_if_t < |
| 19612 | detail::has_from_json<basic_json_t, Array>::value, int > = 0 > |
| 19613 | Array get_to(T (&v)[N]) const |
| 19614 | noexcept(noexcept(JSONSerializer<Array>::from_json( |
| 19615 | std::declval<const basic_json_t&>(), v))) |
| 19616 | { |
| 19617 | JSONSerializer<Array>::from_json(*this, v); |
| 19618 | return v; |
| 19619 | } |
| 19620 | |
| 19621 | |
| 19622 | /*! |
nothing calls this directly
no test coverage detected