! @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 */
| 10389 | @since version 3.6.0 |
| 10390 | */ |
| 10391 | bool empty() const noexcept |
| 10392 | { |
| 10393 | return reference_tokens.empty(); |
| 10394 | } |
| 10395 | |
| 10396 | private: |
| 10397 | /*! |
no outgoing calls
no test coverage detected