TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ lexer()

template<typename BasicJsonType , typename InputAdapterType >
nlohmann::detail::lexer< BasicJsonType, InputAdapterType >::lexer ( InputAdapterType &&  adapter,
bool  ignore_comments_ = false 
)
inlineexplicitnoexcept

Definition at line 6703 of file json.hpp.

6704 : ia(std::move(adapter))
6705 , ignore_comments(ignore_comments_)
6706 , decimal_point_char(static_cast<char_int_type>(get_decimal_point()))
6707 {}
const bool ignore_comments
whether comments should be ignored (true) or signaled as errors (false)
Definition: json.hpp:8216
static JSON_HEDLEY_PURE char get_decimal_point() noexcept
return the locale-dependent decimal point
Definition: json.hpp:6723
InputAdapterType ia
input adapter
Definition: json.hpp:8213
const char_int_type decimal_point_char
the decimal point
Definition: json.hpp:8242