MCPcopy Create free account
hub / github.com/arun11299/cpp-jwt / operator>

Function operator>

include/jwt/json/json.hpp:22931–22934  ·  view source on GitHub ↗

! @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

Source from the content-addressed store, hash-verified

22929 @since version 1.0.0
22930 */
22931 friend bool operator>(const_reference lhs, const_reference rhs) noexcept
22932 {
22933 return !(lhs <= rhs);
22934 }
22935
22936 /*!
22937 @brief comparison: greater than

Callers

nothing calls this directly

Calls 1

basic_jsonFunction · 0.70

Tested by

no test coverage detected