| 17281 | detail::enable_if_t < |
| 17282 | detail::has_from_json<basic_json_t, Array>::value, int > = 0 > |
| 17283 | Array get_to(T (&v)[N]) const |
| 17284 | noexcept(noexcept(JSONSerializer<Array>::from_json( |
| 17285 | std::declval<const basic_json_t&>(), v))) |
| 17286 | { |
| 17287 | JSONSerializer<Array>::from_json(*this, v); |
| 17288 | return v; |
| 17289 | } |
| 17290 | |
| 17291 | |
| 17292 | /*! |
nothing calls this directly
no test coverage detected