TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ from_json() [12/19]

template<typename BasicJsonType , typename T , std::size_t N>
auto nlohmann::detail::from_json ( const BasicJsonType &  j,
T(&)  arr[N] 
) -> decltype(j.template get<T>(), void())

Definition at line 4049 of file json.hpp.

4051{
4052 for (std::size_t i = 0; i < N; ++i)
4053 {
4054 arr[i] = j.at(i).template get<T>();
4055 }
4056}