lexicographical_compare (STL/CLR)
Compares element by element between two sequences to determine which is lesser of the two.
template<class _InIt1, class _InIt2> inline
bool lexicographical_compare(_InIt1 _First1, _InIt1 _Last1,
_InIt2 _First2, _InIt2 _Last2);
template<class _InIt1, class _InIt2, class _Pr> inline
bool lexicographical_compare(_InIt1 _First1, _InIt1 _Last1,
_InIt2 _First2, _InIt2 _Last2, _Pr _Pred);
Remarks
This function behaves the same as the STL function lexicographical_compare. For more information, see lexicographical_compare.
Requirements
Header: <cliext/algorithm>
Namespace: cliext