MCPcopy Create free account
hub / github.com/LAStools/LAStools / json_pointer operator/

Function json_pointer operator/

src/json.hpp:13932–13936  ·  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

13930 /// @brief create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer
13931 /// @sa https://json.nlohmann.me/api/json_pointer/operator_slash/
13932 friend json_pointer operator/(const json_pointer& lhs,
13933 const json_pointer& rhs)
13934 {
13935 return json_pointer(lhs) /= rhs;
13936 }
13937
13938 /// @brief create a new JSON pointer by appending the unescaped token at the end of the JSON pointer
13939 /// @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