! @brief create JSON pointer Create a JSON pointer according to the syntax described in [Section 3 of RFC6901](https://tools.ietf.org/html/rfc6901#section-3). @param[in] s string representing the JSON pointer; if omitted, the empty string is assumed which references the whole JSON value @throw parse_error.107 if the given JSON pointer @a s is nonempty and
| 6980 | @since version 2.0.0 |
| 6981 | */ |
| 6982 | explicit json_pointer(const std::string& s = "") : reference_tokens(split(s)) {} |
| 6983 | |
| 6984 | /*! |
| 6985 | @brief return a string representation of the JSON pointer |
nothing calls this directly
no outgoing calls
no test coverage detected