find_first_of (STL/CLR)

搜索的第一个匹配项任何在目标范围内的若干值或的第一个匹配项二进制谓词实际上是等效的指定与指定将元素任意多个元素。

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

备注

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

要求

标题: <cliext/算法>

命名空间: cliext

请参见

参考

algorithm (STL/CLR)