! @brief comparison: greater than or equal Compares whether one JSON value @a lhs is greater than or equal to 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 or equal to @a rhs @complexity Linear. @exceptionsafety No-throw guaran
| 6736 | @since version 1.0.0 |
| 6737 | */ |
| 6738 | friend bool operator>=(const_reference lhs, const_reference rhs) noexcept |
| 6739 | { |
| 6740 | return !(lhs < rhs); |
| 6741 | } |
| 6742 | |
| 6743 | /*! |
| 6744 | @brief comparison: greater than or equal |
nothing calls this directly
no test coverage detected