| 19527 | detail::enable_if_t < |
| 19528 | detail::has_from_json<basic_json_t, Array>::value, int > = 0 > |
| 19529 | Array get_to(T(&v)[N]) const |
| 19530 | noexcept(noexcept(JSONSerializer<Array>::from_json( |
| 19531 | std::declval<const basic_json_t&>(), v))) |
| 19532 | { |
| 19533 | JSONSerializer<Array>::from_json(*this, v); |
| 19534 | return v; |
| 19535 | } |
| 19536 | |
| 19537 | |
| 19538 | /*! |
nothing calls this directly
no test coverage detected