函数定义(VS2013):
参数及其返回值:
first,last
分别指向一个序列中初始及末尾位置的输入迭代器。这个范围即 [first,last) ,包括 first 到 last 间的所有元素,包括 first 指向的元素,但不包括 last 指向的元素。
pred
一元谓词(Unary)函数,以范围中的一个元素为参数,然后返回一个可转换成 bool 类型的值。
其返回值表明指定元素是否满足当前函数所检测的条件。
该函数不能修改其参数。
可以是函数指针(Function pointer)类型或函数对象(Function object)或 lambda bind 等类型。
返回
当范围中存在某个元素传入 pred 后返回 ture,则 any_of 返回 ture,否则返回 false。
当范围为空,返回 false。
例子:
#include <iostream>
#include <functional>
#include <vector>
#include <algorithm>
using namespace std;
function<bool(int)> is_has_odd = [](int x) -> bool
{
return x % 2 ? true : false;
};
int main()
{
vector<int> even = { 2, 3, 4, 6, 8, 10, 12, 14, 16 };
if (any_of(even.begin(), even.end(), is_has_odd))
{
cout << "yes" << endl;
}
else
{
cout << "no" << endl;
}
return 0;
}
运行结果: