| 4831 | |
| 4832 | template < typename BasicJsonType, typename T, std::size_t... Idx > |
| 4833 | std::array<T, sizeof...(Idx)> from_json_inplace_array_impl(BasicJsonType&& j, |
| 4834 | identity_tag<std::array<T, sizeof...(Idx)>> /*unused*/, index_sequence<Idx...> /*unused*/) |
| 4835 | { |
| 4836 | return { { std::forward<BasicJsonType>(j).at(Idx).template get<T>()... } }; |
| 4837 | } |
| 4838 | |
| 4839 | template < typename BasicJsonType, typename T, std::size_t N > |
| 4840 | auto from_json(BasicJsonType&& j, identity_tag<std::array<T, N>> tag) |