json/doc/mkdocs/docs/api/json_pointer/operator_string.md
Florian Albrechtskirchinger 03dbf3ed97 Update json_pointer docs
2022-04-07 18:24:12 +02:00

380 B

nlohmann::json_pointer::operator string_t

operator string_t() const

Return a string representation of the JSON pointer.

Return value

A string representation of the JSON pointer

Possible implementation

operator string_t() const
{
    return to_string();
}

Version history

  • Since version 2.0.0.
  • Changed type to string_t.