MCPcopy Create free account
hub / github.com/aixed/WeChat-Hook / json_pointer operator/

Function json_pointer operator/

include/json.hpp:13683–13687  ·  view source on GitHub ↗

@brief create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer @sa https://json.nlohmann.me/api/json_pointer/operator_slash/

Source from the content-addressed store, hash-verified

13681 /// @brief create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer
13682 /// @sa https://json.nlohmann.me/api/json_pointer/operator_slash/
13683 friend json_pointer operator/(const json_pointer& lhs,
13684 const json_pointer& rhs)
13685 {
13686 return json_pointer(lhs) /= rhs;
13687 }
13688
13689 /// @brief create a new JSON pointer by appending the unescaped token at the end of the JSON pointer
13690 /// @sa https://json.nlohmann.me/api/json_pointer/operator_slash/

Callers

nothing calls this directly

Calls 1

json_pointerFunction · 0.70

Tested by

no test coverage detected