equal (STL/CLR)
Compares two ranges element by element either for equality or equivalence in a sense specified by a binary predicate.
template<class _InIt1, class _InIt2> inline
bool equal(_InIt1 _First1, _InIt1 _Last1, _InIt2 _First2);
template<class _InIt1, class _InIt2, class _Pr> inline
bool equal(_InIt1 _First1, _InIt1 _Last1, _InIt2 _First2,
_Pr _Pred);
Remarks
This function behaves the same as the STL function equal. For more information, see equal.
Requirements
Header: <cliext/algorithm>
Namespace: cliext