MCPcopy Create free account
hub / github.com/AllentDan/LibtorchTutorials / json_pointer

Method json_pointer

lesson6-Segmentation/json.hpp:11582–11584  ·  view source on GitHub ↗

! @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

Source from the content-addressed store, hash-verified

11580 @since version 2.0.0
11581 */
11582 explicit json_pointer(const std::string& s = "")
11583 : reference_tokens(split(s))
11584 {}
11585
11586 /*!
11587 @brief return a string representation of the JSON pointer

Callers

nothing calls this directly

Calls 1

splitFunction · 0.85

Tested by

no test coverage detected