Home » C++ algorithm any_of() function

C++ algorithm any_of() function

by Online Tutorials Library

C++ Algorithm Function any_of()

C++ Algorithm any_of() function tests the value of ‘pred’ for every element in the range, if for any element the value of pred is true, then the function returns true else return false.

Syntax

Parameter

first: It is the first element in the range specified.

last: It is the last element in the range.

pred: It is a unary function which accepts the argument from the range.

Return value

The function has one return type, ‘true’. If the value of argument ‘pred’ is true for any of the elements of the range then the value ‘true’ is returned, else false.

Example 1

Output:

There are elements which exist in the table of 2.  

Example 2

Output:

Negative elements exist in the array  

Complexity

The function moves linearly, starting from the first element going towards the last one. For each element of the list, the value of ‘pred’ is checked. The search goes on until a mismatch for the ‘pred’ value is encountered.

Data races

Either the function accesses all the objects in the specified range or some of them.

Exceptions

The function throws an exception if any of the argument throws one.

You may also like