MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / operator!=

Function operator!=

3rd/nlohmann_json/include/nlohmann/json.hpp:6478–6481  ·  view source on GitHub ↗

! @brief comparison: not equal Compares two JSON values for inequality by calculating `not (lhs == rhs)`. @param[in] lhs first JSON value to consider @param[in] rhs second JSON value to consider @return whether the values @a lhs and @a rhs are not equal @complexity Linear. @exceptionsafety No-throw guarantee: this function never throws exceptions. @liveexampl

Source from the content-addressed store, hash-verified

6476 @since version 1.0.0
6477 */
6478 friend bool operator!=(const_reference lhs, const_reference rhs) noexcept
6479 {
6480 return !(lhs == rhs);
6481 }
6482
6483 /*!
6484 @brief comparison: not equal

Callers

nothing calls this directly

Calls 1

basic_jsonFunction · 0.70

Tested by

no test coverage detected