absl::operator!=

Returns whether two maps differ in their key/value pairs.

Synopsis

Declared in <absl/container/linked_hash_map.h>

bool
operator!=(
    linked_hash_map const& a,
    linked_hash_map const& b);

Return Value

true if the maps are not equal.

Parameters

NameDescription
aThe first map to compare.
bThe second map to compare.