! @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 */
| 11921 | @since version 3.6.0 |
| 11922 | */ |
| 11923 | bool empty() const noexcept |
| 11924 | { |
| 11925 | return reference_tokens.empty(); |
| 11926 | } |
| 11927 | |
| 11928 | private: |
| 11929 | /*! |
no outgoing calls
no test coverage detected