Return whether lhs and rhs do not have the same value.

Synopsis

Declared in <bdljsn_json.h>

bool
operator!=(
    JsonArray const& lhs,
    Json const& rhs);

Description

Return true if the specified lhs and rhs arguments do not have the same value, and false otherwise. Two arguments do not have the same value if the Json object does not have the same value as a Json object constructed from the other argument.

Return Value

true if lhs and rhs do not have the same value, and false otherwise

Parameters

Name

Description

lhs

left‐hand operand

rhs

right‐hand operand

Created with MrDocs