| 14548 | /// @brief 3-way compares two JSON pointers |
| 14549 | template<typename RefStringTypeRhs> |
| 14550 | std::strong_ordering operator<=>(const json_pointer<RefStringTypeRhs>& rhs) const noexcept // *NOPAD* |
| 14551 | { |
| 14552 | return reference_tokens <=> rhs.reference_tokens; // *NOPAD* |
| 14553 | } |
| 14554 | #else |
| 14555 | /// @brief compares two JSON pointers for equality |
| 14556 | /// @sa https://json.nlohmann.me/api/json_pointer/operator_eq/ |
nothing calls this directly
no test coverage detected