| 10234 | @since version 3.6.0 |
| 10235 | */ |
| 10236 | friend json_pointer operator/(const json_pointer& lhs, |
| 10237 | const json_pointer& rhs) |
| 10238 | { |
| 10239 | return json_pointer(lhs) /= rhs; |
| 10240 | } |
| 10241 | |
| 10242 | /*! |
| 10243 | @brief create a new JSON pointer by appending the unescaped token at the end of the JSON pointer |
nothing calls this directly
no test coverage detected