@brief create JSON pointer @sa https://json.nlohmann.me/api/json_pointer/json_pointer/
| 60 | /// @brief create JSON pointer |
| 61 | /// @sa https://json.nlohmann.me/api/json_pointer/json_pointer/ |
| 62 | explicit json_pointer(const string_t& s = "") |
| 63 | : reference_tokens(split(s)) |
| 64 | {} |
| 65 | |
| 66 | /// @brief return a string representation of the JSON pointer |
| 67 | /// @sa https://json.nlohmann.me/api/json_pointer/to_string/ |
no test coverage detected