! @param[in] get_char whether a new character should be retrieved from the input (true, default) or whether the last read character should be considered instead @return whether a valid UBJSON value was passed to the SAX parser */
| 10902 | @return whether a valid UBJSON value was passed to the SAX parser |
| 10903 | */ |
| 10904 | bool parse_ubjson_internal(const bool get_char = true) |
| 10905 | { |
| 10906 | return get_ubjson_value(get_char ? get_ignore_noop() : current); |
| 10907 | } |
| 10908 | |
| 10909 | /*! |
| 10910 | @brief reads a UBJSON string |
nothing calls this directly
no outgoing calls
no test coverage detected