! @brief comparison: greater than Compares whether one JSON value @a lhs is greater than another JSON value by calculating `not (lhs <= rhs)`. @param[in] lhs first JSON value to consider @param[in] rhs second JSON value to consider @return whether @a lhs is greater than to @a rhs @complexity Linear. @exceptionsafety No-throw guarantee: this function never thro
| 6690 | @since version 1.0.0 |
| 6691 | */ |
| 6692 | friend bool operator>(const_reference lhs, const_reference rhs) noexcept |
| 6693 | { |
| 6694 | return !(lhs <= rhs); |
| 6695 | } |
| 6696 | |
| 6697 | /*! |
| 6698 | @brief comparison: greater than |
nothing calls this directly
no test coverage detected