MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / json_pointer operator/

Function json_pointer operator/

extern/json/json.hpp:13842–13846  ·  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

13840 /// @brief create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer
13841 /// @sa https://json.nlohmann.me/api/json_pointer/operator_slash/
13842 friend json_pointer operator/(const json_pointer& lhs,
13843 const json_pointer& rhs)
13844 {
13845 return json_pointer(lhs) /= rhs;
13846 }
13847
13848 /// @brief create a new JSON pointer by appending the unescaped token at the end of the JSON pointer
13849 /// @sa https://json.nlohmann.me/api/json_pointer/operator_slash/

Callers

nothing calls this directly

Calls 2

moveFunction · 0.85
json_pointerFunction · 0.70

Tested by

no test coverage detected