llvm::equal

equal overloads

Synopses

Declared in <llvm/ADT/STLExtras.h>

Wrapper function around std::equal to detect if pair-wise elements between two ranges are the same.

template<
    typename L,
    typename R>
bool
equal(
    L&& LRange,
    R&& RRange);
» more...

Return whether corresponding elements of LRange and RRange are equal according to P.

template<
    typename L,
    typename R,
    typename BinaryPredicate>
bool
equal(
    L&& LRange,
    R&& RRange,
    BinaryPredicate P);
» more...