@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/
| 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/ |
nothing calls this directly
no test coverage detected