equal overloads
Declared in <llvm/ADT/STLExtras.h>
Return whether corresponding elements of LRange and RRange are equal.
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...
P.| Name | Description |
|---|---|
| LRange | First range to compare. |
| RRange | Second range to compare. |
| P | Binary predicate comparing element pairs. |