MCPcopy Create free account
hub / github.com/boostorg/json / done

Method done

include/boost/json/basic_parser.hpp:566–570  ·  view source on GitHub ↗

Check if a complete JSON text has been parsed. This function returns `true` when all of these conditions are met: @li A complete serialized JSON text has been presented to the parser, and @li No error or exception has occurred since the parser was constructed, or since the last call to @ref reset. @par Complexity Constant.

Source from the content-addressed store, hash-verified

564 No-throw guarantee.
565 */
566 bool
567 done() const noexcept
568 {
569 return done_;
570 }
571
572 /** Reset the state, to parse a new document.
573

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected