llvm::operator==

Return whether LHS and RHS refer to the same bucket.

Synopsis

Declared in <llvm/ADT/DenseMap.h>

[[nodiscard]]
bool
operator==(
    DenseMapIterator const& LHS,
    DenseMapIterator const& RHS);

Return Value

True if both iterators refer to the same bucket.

NOTE

The return value should not be discarded.

Parameters

NameDescription
LHSLeft-hand iterator.
RHSRight-hand iterator.