TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ input_adapter() [1/7]

template<typename CharT , typename std::enable_if< std::is_pointer< CharT >::value &&!std::is_array< CharT >::value &&std::is_integral< typename std::remove_pointer< CharT >::type >::value &&sizeof(typename std::remove_pointer< CharT >::type)==1, int >::type = 0>
contiguous_bytes_input_adapter nlohmann::detail::input_adapter ( CharT  b)

Definition at line 5806 of file json.hpp.

5807{
5808 auto length = std::strlen(reinterpret_cast<const char *>(b));
5809 const auto *ptr = reinterpret_cast<const char *>(b);
5810 return input_adapter(ptr, ptr + length);
5811}