lower_bound (STL/CLR)

查找第一个元素的位置中有一个值大于或等效于指定值,该排序的标准可以由二进制谓词指定的有序的大小。

template<class _FwdIt, class _Ty> inline
    _FwdIt lower_bound(_FwdIt _First, _FwdIt _Last, const _Ty% _Val);
template<class _FwdIt, class _Ty, class _Pr> inline
    _FwdIt lower_bound(_FwdIt _First, _FwdIt _Last,
        const _Ty% _Val, _Pr _Pred);

备注

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

要求

标题: <cliext/算法>

命名空间: cliext

请参见

参考

algorithm (STL/CLR)