@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/
| 13681 | /// @brief create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer |
| 13682 | /// @sa https://json.nlohmann.me/api/json_pointer/operator_slash/ |
| 13683 | friend json_pointer operator/(const json_pointer& lhs, |
| 13684 | const json_pointer& rhs) |
| 13685 | { |
| 13686 | return json_pointer(lhs) /= rhs; |
| 13687 | } |
| 13688 | |
| 13689 | /// @brief create a new JSON pointer by appending the unescaped token at the end of the JSON pointer |
| 13690 | /// @sa https://json.nlohmann.me/api/json_pointer/operator_slash/ |
nothing calls this directly
no test coverage detected