MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / from_json_inplace_array_impl

Function from_json_inplace_array_impl

Source/external/json.hpp:4833–4837  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4831
4832template < typename BasicJsonType, typename T, std::size_t... Idx >
4833std::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
4839template < typename BasicJsonType, typename T, std::size_t N >
4840auto from_json(BasicJsonType&& j, identity_tag<std::array<T, N>> tag)

Callers 1

from_jsonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected