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