1
0
mirror of https://github.com/nlohmann/json.git synced 2026-07-25 21:23:02 +04:00
Files
json/docs/mkdocs/docs/api/json_pointer/parent_pointer.md
T
Niels Lohmann b21c345179 Reorganize directories (#3462)
* 🚚 move files
* 🚚 rename doc folder to docs
* 🚚 rename test folder to tests
2022-05-01 09:41:50 +02:00

654 B

nlohmann::json_pointer::parent_pointer

json_pointer parent_pointer() const;

Returns the parent of this JSON pointer.

Return value

Parent of this JSON pointer; in case this JSON pointer is the root, the root itself is returned.

Complexity

Linear in the length of the JSON pointer.

Examples

??? example

The example shows the result of `parent_pointer` for different JSON Pointers.
 
```cpp
--8<-- "examples/json_pointer__parent_pointer.cpp"
```

Output:

```json
--8<-- "examples/json_pointer__parent_pointer.output"
```

Version history

Added in version 3.6.0.