Home » C++ algorithm none_of() function

C++ algorithm none_of() function

by Online Tutorials Library

C++ Algorithm Functions none_of()

C++ Algorithm none_of() function returns a true value if the value of ‘pred’ argument is false. The value should be false for all elements in the range [first, last).

Syntax

Parameter

first : It specifies the first element in the list.

last: It specifies the last element in the list.

pred: It is an 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 false for all the elements of the range then the value ‘true’ is returned, else false.

Example 1

Output:

 None of the elements is divisible by 2  

Example 2

Output:

Array 2 4 6 8 12None of the elements in the range are negative  

Complexity

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

Data races

Either all the objects in the specified range or some of them are accessed by the function.

Exceptions

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

You may also like