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.
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected