lexicographical_compare (STL/CLR)
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at lexicographical_compare (STL/CLR).
Compares element by element between two sequences to determine which is lesser of the two.
Syntax
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