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