| 4902 | |
| 4903 | template < typename BasicJsonType, typename T, std::size_t... Idx > |
| 4904 | std::array<T, sizeof...(Idx)> from_json_inplace_array_impl(BasicJsonType&& j, |
| 4905 | identity_tag<std::array<T, sizeof...(Idx)>> /*unused*/, index_sequence<Idx...> /*unused*/) |
| 4906 | { |
| 4907 | return { { std::forward<BasicJsonType>(j).at(Idx).template get<T>()... } }; |
| 4908 | } |
| 4909 | |
| 4910 | template < typename BasicJsonType, typename T, std::size_t N > |
| 4911 | auto from_json(BasicJsonType&& j, identity_tag<std::array<T, N>> tag) |