Dumps a debug representation of the internal state of this :class:`Data` object that includes its navigational state to ``cout`` (``stdout``) for debugging purposes.
(self)
| 1402 | return result |
| 1403 | |
| 1404 | def dump(self) -> None: |
| 1405 | """ |
| 1406 | Dumps a debug representation of the internal state of this :class:`Data` |
| 1407 | object that includes its navigational state to ``cout`` (``stdout``) for |
| 1408 | debugging purposes. |
| 1409 | """ |
| 1410 | pn_data_dump(self._data) |
| 1411 | |
| 1412 | def put_dict(self, d: Dict[Any, Any]) -> None: |
| 1413 | """ |
no test coverage detected