find_end (STL/CLR)

在范围内查找二进制谓词实际上是等效的指定与指定的顺序相同的或的最后一 subsequence。

template<class _FwdIt1, class _FwdIt2> inline
    _FwdIt1 find_end(_FwdIt1 _First1, _FwdIt1 _Last1,
        _FwdIt2 _First2, _FwdIt2 _Last2);
template<class _FwdIt1, class _FwdIt2, class _Pr> inline
    _FwdIt1 find_end(_FwdIt1 _First1, _FwdIt1 _Last1,
        _FwdIt2 _First2, _FwdIt2 _Last2, _Pr _Pred);

备注

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

要求

标题: <cliext/算法>

命名空间: cliext

请参见

参考

algorithm (STL/CLR)