includes (STL/CLR)

测试已排序的范围是否包含在秒排序的范围包含的所有元素,该元素之间的排序或等效性标准可以由二进制谓词指定。

template<class _InIt1, class _InIt2> inline
    bool includes(_InIt1 _First1, _InIt1 _Last1,
        _InIt2 _First2, _InIt2 _Last2);
template<class _InIt1, class _InIt2, class _Pr> inline
    bool includes(_InIt1 _First1, _InIt1 _Last1,
        _InIt2 _First2, _InIt2 _Last2, _Pr _Pred);

备注

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

要求

标题: <cliext/算法>

命名空间: cliext

请参见

参考

algorithm (STL/CLR)