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

Function operator!=

Source/Utils/json.hpp:12501–12505  ·  view source on GitHub ↗

! @brief compares two JSON pointers for inequality @param[in] lhs JSON pointer to compare @param[in] rhs JSON pointer to compare @return whether @a lhs is not equal @a rhs @complexity Linear in the length of the JSON pointer @exceptionsafety No-throw guarantee: this function never throws exceptions. */

Source from the content-addressed store, hash-verified

12499 @exceptionsafety No-throw guarantee: this function never throws exceptions.
12500 */
12501 friend bool operator!=(json_pointer const& lhs,
12502 json_pointer const& rhs) noexcept
12503 {
12504 return !(lhs == rhs);
12505 }
12506
12507 /// the reference tokens
12508 std::vector<std::string> reference_tokens;

Callers

nothing calls this directly

Calls 1

basic_jsonFunction · 0.70

Tested by

no test coverage detected