TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ parse_ubjson_internal()

template<typename BasicJsonType , typename InputAdapterType , typename SAX = json_sax_dom_parser<BasicJsonType>>
bool nlohmann::detail::binary_reader< BasicJsonType, InputAdapterType, SAX >::parse_ubjson_internal ( const bool  get_char = true)
inlineprivate
Parameters
[in]get_charwhether a new character should be retrieved from the input (true, default) or whether the last read character should be considered instead
Returns
whether a valid UBJSON value was passed to the SAX parser

Definition at line 10228 of file json.hpp.

10229 {
10230 return get_ubjson_value(get_char ? get_ignore_noop() : current);
10231 }
char_int_type get_ignore_noop()
Definition: json.hpp:10778
bool get_ubjson_value(const char_int_type prefix)
Definition: json.hpp:10431
char_int_type current
the current character
Definition: json.hpp:10978