3.0 KiB
3.0 KiB
nlohmann::basic_json::operator<=>
// since C++20
class basic_json {
std::partial_ordering operator<=>(const_reference rhs) const noexcept; // (1)
template<typename ScalarType>
std::partial_ordering operator<=>(const ScalarType rhs) const noexcept; // (2)
};
-
3-way compares two JSON values producing a result of type
std::partial_orderingaccording to the following rules:- Two JSON values compare with a result of
std::partial_ordering::unorderedif either value is discarded. - If both JSON values are of the same type, the result is produced by 3-way comparing their stored values using
their respective
operator<=>. - Integer and floating-point numbers are converted to their common type and then 3-way compared using their
respective
operator<=>. For instance, comparing an integer and a floating-point value will 3-way compare the first value converted to floating-point with the second value. - Otherwise, yields a result by comparing the type (see
value_t).
- Two JSON values compare with a result of
-
3-way compares a JSON value and a scalar or a scalar and a JSON value by converting the scalar to a JSON value and 3-way comparing both JSON values (see 1).
Template parameters
ScalarType- a scalar type according to
std::is_scalar<ScalarType>::value
Parameters
rhs(in)- second value to consider
Return value
the std::partial_ordering of the 3-way comparison of *this and rhs
Exception safety
No-throw guarantee: this function never throws exceptions.
Complexity
Linear.
Notes
!!! note "Comparing NaN"
- `NaN` values are unordered within the domain of numbers.
The following comparisons all yield `std::partial_ordering::unordered`:
1. Comparing a `NaN` with itself.
2. Comparing a `NaN` with another `NaN`.
3. Comparing a `NaN` and any other number.
Examples
??? example "Example: (1) comparing JSON values"
The example demonstrates comparing several JSON values.
```cpp
--8<-- "examples/operator_spaceship__const_reference.c++20.cpp"
```
Output:
```json
--8<-- "examples/operator_spaceship__const_reference.c++20.output"
```
??? example "Example: (2) comparing JSON values and scalars"
The example demonstrates comparing several JSON values and scalars.
```cpp
--8<-- "examples/operator_spaceship__scalartype.c++20.cpp"
```
Output:
```json
--8<-- "examples/operator_spaceship__scalartype.c++20.output"
```
See also
- operator== - comparison: equal
- operator!= - comparison: not equal
- operator< - comparison: less than
- operator<= - comparison: less than or equal
- operator> - comparison: greater than
- operator>= - comparison: greater than or equal
Version history
- Added in version 3.11.0.
- Added in version 3.11.0.