absl::operator==

Returns whether two maps contain the same 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 equal.

Parameters

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