! @brief comparison: less than or equal Compares whether one JSON value @a lhs is less than or equal to another JSON value by calculating `not (rhs < lhs)`. @param[in] lhs first JSON value to consider @param[in] rhs second JSON value to consider @return whether @a lhs is less than or equal to @a rhs @complexity Linear. @exceptionsafety No-throw guarantee: this
| 6644 | @since version 1.0.0 |
| 6645 | */ |
| 6646 | friend bool operator<=(const_reference lhs, const_reference rhs) noexcept |
| 6647 | { |
| 6648 | return !(rhs < lhs); |
| 6649 | } |
| 6650 | |
| 6651 | /*! |
| 6652 | @brief comparison: less than or equal |
nothing calls this directly
no test coverage detected