@brief create JSON pointer @sa https://json.nlohmann.me/api/json_pointer/json_pointer/
| 13865 | /// @brief create JSON pointer |
| 13866 | /// @sa https://json.nlohmann.me/api/json_pointer/json_pointer/ |
| 13867 | explicit json_pointer(const string_t& s = "") |
| 13868 | : reference_tokens(split(s)) |
| 13869 | {} |
| 13870 | |
| 13871 | /// @brief return a string representation of the JSON pointer |
| 13872 | /// @sa https://json.nlohmann.me/api/json_pointer/to_string/ |
no test coverage detected