lexicographical_compare (STL/CLR)

由两个序列之间的元素比较元素确定是较小者两个。

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);

备注

此功能相同的行为就如同 STL 功能 lexicographical_compare的。有关更多信息,请参见 lexicographical_compare

要求

标题: <cliext/算法>

命名空间: cliext

请参见

参考

algorithm (STL/CLR)