! @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.6.0 */
| 11851 | @since version 3.6.0 |
| 11852 | */ |
| 11853 | bool empty() const noexcept |
| 11854 | { |
| 11855 | return reference_tokens.empty(); |
| 11856 | } |
| 11857 | |
| 11858 | private: |
| 11859 | /*! |
no outgoing calls
no test coverage detected