MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / operator>=

Function operator>=

Source/Utils/json.hpp:22976–22979  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

22974 @since version 1.0.0
22975 */
22976 friend bool operator>=(const_reference lhs, const_reference rhs) noexcept
22977 {
22978 return !(lhs < rhs);
22979 }
22980
22981 /*!
22982 @brief comparison: greater than or equal

Callers

nothing calls this directly

Calls 1

basic_jsonFunction · 0.70

Tested by

no test coverage detected