MCPcopy Create free account
hub / github.com/ErrorAtLine0/infinipaint / json_pointer operator/

Function json_pointer operator/

include/nlohmann/json.hpp:14627–14631  ·  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

14625 /// @brief create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer
14626 /// @sa https://json.nlohmann.me/api/json_pointer/operator_slash/
14627 friend json_pointer operator/(const json_pointer& lhs,
14628 const json_pointer& rhs)
14629 {
14630 return json_pointer(lhs) /= rhs;
14631 }
14632
14633 /// @brief create a new JSON pointer by appending the unescaped token at the end of the JSON pointer
14634 /// @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