! @brief return whether pointer points to the root document @return true iff the JSON pointer points to the root document @complexity Constant. @exceptionsafety No-throw guarantee: this function never throws exceptions. @liveexample{The example shows the result of `empty` for different JSON Pointers.,json_pointer__empty} @since version 3
| 11849 | @since version 3.6.0 |
| 11850 | */ |
| 11851 | bool empty() const noexcept |
| 11852 | { |
| 11853 | return reference_tokens.empty(); |
| 11854 | } |
| 11855 | |
| 11856 | private: |
| 11857 | /*! |
no outgoing calls
no test coverage detected