共用方式為


find_end (STL/CLR)

查詢一個範圍內的子序列,等同於指定序列或等同於由二元述詞指定相同意義。

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/algorithm>

命名空間: cliext

請參閱

參考

algorithm (STL/CLR)