@brief create JSON pointer @sa https://json.nlohmann.me/api/json_pointer/json_pointer/
| 14564 | /// @brief create JSON pointer |
| 14565 | /// @sa https://json.nlohmann.me/api/json_pointer/json_pointer/ |
| 14566 | explicit json_pointer(const string_t& s = "") |
| 14567 | : reference_tokens(split(s)) |
| 14568 | {} |
| 14569 | |
| 14570 | /// @brief return a string representation of the JSON pointer |
| 14571 | /// @sa https://json.nlohmann.me/api/json_pointer/to_string/ |
no test coverage detected