TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ get_ignore_noop()

template<typename BasicJsonType , typename InputAdapterType , typename SAX = json_sax_dom_parser<BasicJsonType>>
char_int_type nlohmann::detail::binary_reader< BasicJsonType, InputAdapterType, SAX >::get_ignore_noop ( )
inlineprivate
Returns
character read from the input after ignoring all 'N' entries

Definition at line 10778 of file json.hpp.

10779 {
10780 do
10781 {
10782 get();
10783 }
10784 while (current == 'N');
10785
10786 return current;
10787 }
char_int_type current
the current character
Definition: json.hpp:10978
char_int_type get()
get next character from the input
Definition: json.hpp:10769