@brief create JSON pointer @sa https://json.nlohmann.me/api/json_pointer/json_pointer/
| 13741 | /// @brief create JSON pointer |
| 13742 | /// @sa https://json.nlohmann.me/api/json_pointer/json_pointer/ |
| 13743 | explicit json_pointer(const string_t& s = "") |
| 13744 | : reference_tokens(split(s)) |
| 13745 | {} |
| 13746 | |
| 13747 | /// @brief return a string representation of the JSON pointer |
| 13748 | /// @sa https://json.nlohmann.me/api/json_pointer/to_string/ |
no test coverage detected