Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/algorithm/all any none of"

From cppreference.com
< cpp‎ | algorithm
(Replace Return value section with a table for easier comparison.)
(Wording update.)
 
(15 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{cpp/title| all_of | any_of | none_of}}
+
{{cpp/title|all_of|any_of|none_of}}
 
{{cpp/algorithm/navbar}}
 
{{cpp/algorithm/navbar}}
 
{{dcl begin}}
 
{{dcl begin}}
{{dcl header | algorithm}}
+
{{dcl header|algorithm}}
{{dcl rev multi | num=1 | since1=c++11 | until1=c++20 |dcl1=
+
{{dcla|num=1|since=c++11|notes={{mark constexpr since c++20}}|
template< class InputIt, class UnaryPredicate >
+
template< class InputIt, class UnaryPred >
bool all_of( InputIt first, InputIt last, UnaryPredicate p );
+
bool all_of( InputIt first, InputIt last, UnaryPred p );
|dcl2=
+
template< class InputIt, class UnaryPredicate >
+
constexpr bool all_of( InputIt first, InputIt last, UnaryPredicate p );
+
 
}}
 
}}
{{dcl | since=c++17 | until= | num=2 |1=
+
{{dcl|since=c++17|num=2|
template< class ExecutionPolicy, class ForwardIt, class UnaryPredicate >
+
template< class ExecutionPolicy, class ForwardIt, class UnaryPred >
bool all_of( ExecutionPolicy&& policy, ForwardIt first, ForwardIt last, UnaryPredicate p );
+
bool all_of( ExecutionPolicy&& policy,
 +
            ForwardIt first, ForwardIt last, UnaryPred p );
 
}}
 
}}
{{dcl rev multi | num=3 | since1=c++11 | until1=c++20 |dcl1=
+
{{dcla|num=3|since=c++11|notes={{mark constexpr since c++20}}|
template< class InputIt, class UnaryPredicate >
+
template< class InputIt, class UnaryPred >
bool any_of( InputIt first, InputIt last, UnaryPredicate p );
+
bool any_of( InputIt first, InputIt last, UnaryPred p );
|dcl2=
+
template< class InputIt, class UnaryPredicate >
+
constexpr bool any_of( InputIt first, InputIt last, UnaryPredicate p );
+
 
}}
 
}}
{{dcl | since=c++17 | until= | num=4 |1=
+
{{dcl|num=4|since=c++17|
template< class ExecutionPolicy, class ForwardIt, class UnaryPredicate >
+
template< class ExecutionPolicy, class ForwardIt, class UnaryPred >
bool any_of( ExecutionPolicy&& policy, ForwardIt first, ForwardIt last, UnaryPredicate p );
+
bool any_of( ExecutionPolicy&& policy,
 +
            ForwardIt first, ForwardIt last, UnaryPred p );
 
}}
 
}}
{{dcl rev multi | num=5 | since1=c++11 | until1=c++20 |dcl1=
+
{{dcla|num=5|since=c++11|notes={{mark constexpr since c++20}}|
template< class InputIt, class UnaryPredicate >
+
template< class InputIt, class UnaryPred >
bool none_of( InputIt first, InputIt last, UnaryPredicate p );
+
bool none_of( InputIt first, InputIt last, UnaryPred p );
|dcl2=
+
template< class InputIt, class UnaryPredicate >
+
constexpr bool none_of( InputIt first, InputIt last, UnaryPredicate p );
+
 
}}
 
}}
{{dcl | since=c++17 | until= | num=6 |1=
+
{{dcl|num=6|since=c++17|
template< class ExecutionPolicy, class ForwardIt, class UnaryPredicate >
+
template< class ExecutionPolicy, class ForwardIt, class UnaryPred >
bool none_of( ExecutionPolicy&& policy, ForwardIt first, ForwardIt last, UnaryPredicate p );
+
bool none_of( ExecutionPolicy&& policy,
 +
              ForwardIt first, ForwardIt last, UnaryPred p );
 
}}
 
}}
 
{{dcl end}}
 
{{dcl end}}
@1@ Checks if unary predicate {{tt|p}} returns {{c|true}} for all elements in the range {{tt|[first, last)}}.
 
  
@3@ Checks if unary predicate {{tt|p}} returns {{c|true}} for at least one element in the range {{tt|[first, last)}}.
+
@1@ Checks if unary predicate {{c|p}} returns {{c|true}} for all elements in the range {{range|first|last}}.
 +
 
 +
@3@ Checks if unary predicate {{c|p}} returns {{c|true}} for at least one element in the range {{range|first|last}}.
 +
 
 +
@5@ Checks if unary predicate {{c|p}} returns {{c|true}} for no elements in the range {{range|first|last}}.
 +
 
 +
@2,4,6@ Same as {{v|1,3,5}}, but executed according to {{c|policy}}.
 +
@@ {{cpp/algorithm/parallel overload precondition|plural=true}}
  
@5@ Checks if unary predicate {{tt|p}} returns {{c|true}} for no elements in the range {{tt|[first, last)}}.
 
@2,4,6@ Same as {{v|1,3,5}}, but executed according to {{tt|policy}}. {{cpp/algorithm/parallel overload precondition|plural=true}}
 
 
===Parameters===
 
===Parameters===
 
{{par begin}}
 
{{par begin}}
{{par | first, last | the range of elements to examine}}
+
{{par|first, last|the range of elements to examine}}
 
{{par exec pol}}
 
{{par exec pol}}
{{par pred1 | p | p1=InputIt}}
+
{{par pred1|p|p1=InputIt}}
 
{{par hreq}}
 
{{par hreq}}
{{par req named | InputIt | InputIterator}}
+
{{par req named|InputIt|InputIterator}}
{{par req named | ForwardIt | ForwardIterator}}
+
{{par req named|ForwardIt|ForwardIterator}}
{{par req named | UnaryPredicate | Predicate}}
+
{{par req named|UnaryPred|Predicate}}
 
{{par end}}
 
{{par end}}
  
 
===Return value===
 
===Return value===
{| class="wikitable"
+
{|class="wikitable" style="text-align: center;"
|  
+
!Has {{c|true}} element
!colspan="4"| predicate returns...
+
!colspan=2|Yes
 +
!colspan=2|No
 
|-
 
|-
| || all true || some true || none true || empty range
+
!{{nbsp}}Has {{c|false}} element{{nbsp}}
 +
!Yes
 +
!No
 +
!Yes
 +
!No
 
|-
 
|-
|1–2) {{c|all_of}} || {{c|true}} || {{c|false}} || {{c|false}} || {{c|true}}
+
|{{tt|all_of}}
 +
|{{c|false}}
 +
|{{c|true}}
 +
|{{c|false}}
 +
|{{c|true}}
 
|-
 
|-
|3–4) {{c|any_of}} || {{c|true}} || {{c|true}} || {{c|false}} || {{c|false}}
+
|{{tt|any_of}}
 +
|{{c|true}}
 +
|{{c|true}}
 +
|{{nbsp|2}}{{c|false}}{{nbsp|2}}
 +
|{{nbsp|2}}{{c|false}}{{nbsp|2}}
 
|-
 
|-
|5–6) {{c|none_of}} || {{c|false}} || {{c|false}} || {{c|true}} || {{c|true}}
+
|{{tt|none_of}}
 +
|{{nbsp|2}}{{c|false}}{{nbsp|2}}
 +
|{{nbsp|2}}{{c|false}}{{nbsp|2}}
 +
|{{c|true}}
 +
|{{c|true}}
 
|}
 
|}
 
  
 
===Complexity===
 
===Complexity===
 
+
@1-6@ At most {{c|std::distance(first, last)}} applications of the predicate {{c|p}}.
@1,3,5@ At most {{tt|last}} - {{tt|first}} applications of the predicate
+
@2,4,6@ {{tt|O(last-first)}} applications of the predicate
+
  
 
===Exceptions===
 
===Exceptions===
{{cpp/algorithm/parallel_exceptions_reporting_behavior|singular=no}}
+
{{cpp/algorithm/parallel exceptions reporting behavior|singular=no}}
  
 
===Possible implementation===
 
===Possible implementation===
See also the implementations of {{c|all_of}} in [https://github.com/gcc-mirror/gcc/blob/d9375e490072d1aae73a93949aa158fcd2a27018/libstdc%2B%2B-v3/include/bits/stl_algo.h#L508 libstdc++] and [https://github.com/llvm-mirror/libcxx/blob/a12cb9d211019d99b5875b6d8034617cbc24c2cc/include/algorithm#L838 libc++].
+
See also the implementations of
 
+
* {{tt|all_of}} in [https://github.com/gcc-mirror/gcc/blob/d9375e490072d1aae73a93949aa158fcd2a27018/libstdc%2B%2B-v3/include/bits/stl_algo.h#L508 libstdc++] and [https://github.com/llvm-mirror/libcxx/blob/a12cb9d211019d99b5875b6d8034617cbc24c2cc/include/algorithm#L838 libc++].
See also the implementations of {{c|any_of}} in [https://github.com/gcc-mirror/gcc/blob/d9375e490072d1aae73a93949aa158fcd2a27018/libstdc%2B%2B-v3/include/bits/stl_algo.h#L541 libstdc++] and [https://github.com/llvm-mirror/libcxx/blob/a12cb9d211019d99b5875b6d8034617cbc24c2cc/include/algorithm#L852 libc++].
+
* {{tt|any_of}} in [https://github.com/gcc-mirror/gcc/blob/d9375e490072d1aae73a93949aa158fcd2a27018/libstdc%2B%2B-v3/include/bits/stl_algo.h#L541 libstdc++] and [https://github.com/llvm-mirror/libcxx/blob/a12cb9d211019d99b5875b6d8034617cbc24c2cc/include/algorithm#L852 libc++].
 
+
* {{tt|none_of}} in [https://github.com/gcc-mirror/gcc/blob/d9375e490072d1aae73a93949aa158fcd2a27018/libstdc%2B%2B-v3/include/bits/stl_algo.h#L523 libstdc++] and [https://github.com/llvm-mirror/libcxx/blob/a12cb9d211019d99b5875b6d8034617cbc24c2cc/include/algorithm#L866 libc++].
See also the implementations of {{c|none_of}} in [https://github.com/gcc-mirror/gcc/blob/d9375e490072d1aae73a93949aa158fcd2a27018/libstdc%2B%2B-v3/include/bits/stl_algo.h#L523 libstdc++] and [https://github.com/llvm-mirror/libcxx/blob/a12cb9d211019d99b5875b6d8034617cbc24c2cc/include/algorithm#L866 libc++].
+
{{eq impl
{{eq fun | 1=
+
|title1=all_of|ver1=1|1=
template< class InputIt, class UnaryPredicate >
+
template<class InputIt, class UnaryPred>
constexpr bool all_of(InputIt first, InputIt last, UnaryPredicate p)
+
constexpr bool all_of(InputIt first, InputIt last, UnaryPred p)
 
{
 
{
 
     return std::find_if_not(first, last, p) == last;
 
     return std::find_if_not(first, last, p) == last;
 
}
 
}
| 2=
+
|title2=any_of|ver2=3|2=
template< class InputIt, class UnaryPredicate >
+
template<class InputIt, class UnaryPred>
constexpr bool any_of(InputIt first, InputIt last, UnaryPredicate p)
+
constexpr bool any_of(InputIt first, InputIt last, UnaryPred p)
 
{
 
{
 
     return std::find_if(first, last, p) != last;
 
     return std::find_if(first, last, p) != last;
 
}
 
}
| 3=
+
|title3=none_of|ver3=5|3=
template< class InputIt, class UnaryPredicate >
+
template<class InputIt, class UnaryPred>
constexpr bool none_of(InputIt first, InputIt last, UnaryPredicate p)
+
constexpr bool none_of(InputIt first, InputIt last, UnaryPred p)
 
{
 
{
 
     return std::find_if(first, last, p) == last;
 
     return std::find_if(first, last, p) == last;
Line 105: Line 117:
 
===Example===
 
===Example===
 
{{example
 
{{example
| code=#include <vector>
+
|code=
#include <numeric>
+
 
#include <algorithm>
 
#include <algorithm>
#include <iterator>
 
#include <iostream>
 
 
#include <functional>
 
#include <functional>
 +
#include <iostream>
 +
#include <iterator>
 +
#include <numeric>
 +
#include <vector>
 
   
 
   
 
int main()
 
int main()
Line 119: Line 132:
 
     std::copy(v.cbegin(), v.cend(), std::ostream_iterator<int>(std::cout, " "));
 
     std::copy(v.cbegin(), v.cend(), std::ostream_iterator<int>(std::cout, " "));
 
     std::cout << '\n';
 
     std::cout << '\n';
+
   
     if (std::all_of(v.cbegin(), v.cend(), [](int i){ return i % 2 == 0; })) {
+
     if (std::all_of(v.cbegin(), v.cend(), [](int i) { return i % 2 == 0; }))
 
         std::cout << "All numbers are even\n";
 
         std::cout << "All numbers are even\n";
     }
+
      
     if (std::none_of(v.cbegin(), v.cend(), std::bind(std::modulus<>(),  
+
     if (std::none_of(v.cbegin(), v.cend(), std::bind(std::modulus<>(),
                                                     std::placeholders::_1, 2))) {
+
                                                     std::placeholders::_1, 2)))
 
         std::cout << "None of them are odd\n";
 
         std::cout << "None of them are odd\n";
     }
+
      
 
     struct DivisibleBy
 
     struct DivisibleBy
 
     {
 
     {
Line 133: Line 146:
 
         bool operator()(int n) const { return n % d == 0; }
 
         bool operator()(int n) const { return n % d == 0; }
 
     };
 
     };
+
   
     if (std::any_of(v.cbegin(), v.cend(), DivisibleBy(7))) {
+
     if (std::any_of(v.cbegin(), v.cend(), DivisibleBy(7)))
 
         std::cout << "At least one number is divisible by 7\n";
 
         std::cout << "At least one number is divisible by 7\n";
    }
 
 
}
 
}
| output=Among the numbers: 2 4 6 8 10 12 14 16 18 20  
+
|output=Among the numbers: 2 4 6 8 10 12 14 16 18 20
 
All numbers are even
 
All numbers are even
 
None of them are odd
 
None of them are odd
Line 146: Line 158:
 
===See also===
 
===See also===
 
{{dsc begin}}
 
{{dsc begin}}
{{dsc inc | cpp/algorithm/ranges/dsc all_any_none_of}}
+
{{dsc inc|cpp/algorithm/ranges/dsc all_any_none_of}}
 
{{dsc end}}
 
{{dsc end}}
  
 
{{langlinks|de|es|fr|it|ja|pt|ru|zh}}
 
{{langlinks|de|es|fr|it|ja|pt|ru|zh}}

Latest revision as of 01:47, 19 March 2024

 
 
Algorithm library
Constrained algorithms and algorithms on ranges (C++20)
Constrained algorithms, e.g. ranges::copy, ranges::sort, ...
Execution policies (C++17)
Non-modifying sequence operations
Batch operations
(C++17)
Search operations
all_ofany_ofnone_of
(C++11)                (C++11)(C++11)

Modifying sequence operations
Copy operations
(C++11)
(C++11)
Swap operations
Transformation operations
Generation operations
Removing operations
Order-changing operations
(until C++17)(C++11)
(C++20)(C++20)
Sampling operations
(C++17)

Sorting and related operations
Partitioning operations
Sorting operations
Binary search operations
(on partitioned ranges)
Set operations (on sorted ranges)
Merge operations (on sorted ranges)
Heap operations
Minimum/maximum operations
(C++11)
(C++17)
Lexicographical comparison operations
Permutation operations
C library
Numeric operations
Operations on uninitialized memory
 
Defined in header <algorithm>
template< class InputIt, class UnaryPred >
bool all_of( InputIt first, InputIt last, UnaryPred p );
(1) (since C++11)
(constexpr since C++20)
template< class ExecutionPolicy, class ForwardIt, class UnaryPred >

bool all_of( ExecutionPolicy&& policy,

             ForwardIt first, ForwardIt last, UnaryPred p );
(2) (since C++17)
template< class InputIt, class UnaryPred >
bool any_of( InputIt first, InputIt last, UnaryPred p );
(3) (since C++11)
(constexpr since C++20)
template< class ExecutionPolicy, class ForwardIt, class UnaryPred >

bool any_of( ExecutionPolicy&& policy,

             ForwardIt first, ForwardIt last, UnaryPred p );
(4) (since C++17)
template< class InputIt, class UnaryPred >
bool none_of( InputIt first, InputIt last, UnaryPred p );
(5) (since C++11)
(constexpr since C++20)
template< class ExecutionPolicy, class ForwardIt, class UnaryPred >

bool none_of( ExecutionPolicy&& policy,

              ForwardIt first, ForwardIt last, UnaryPred p );
(6) (since C++17)
1) Checks if unary predicate p returns true for all elements in the range [firstlast).
3) Checks if unary predicate p returns true for at least one element in the range [firstlast).
5) Checks if unary predicate p returns true for no elements in the range [firstlast).
2,4,6) Same as (1,3,5), but executed according to policy.
These overloads participate in overload resolution only if

std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> is true.

(until C++20)

std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> is true.

(since C++20)

Contents

[edit] Parameters

first, last - the range of elements to examine
policy - the execution policy to use. See execution policy for details.
p - unary predicate .

The expression p(v) must be convertible to bool for every argument v of type (possibly const) VT, where VT is the value type of InputIt, regardless of value category, and must not modify v. Thus, a parameter type of VT&is not allowed, nor is VT unless for VT a move is equivalent to a copy(since C++11). ​

Type requirements
-
InputIt must meet the requirements of LegacyInputIterator.
-
ForwardIt must meet the requirements of LegacyForwardIterator.
-
UnaryPred must meet the requirements of Predicate.

[edit] Return value

Has true element Yes No
 Has false element  Yes No Yes No
all_of false true false true
any_of true true   false     false  
none_of   false     false   true true

[edit] Complexity

1-6) At most std::distance(first, last) applications of the predicate p.

[edit] Exceptions

The overloads with a template parameter named ExecutionPolicy report errors as follows:

  • If execution of a function invoked as part of the algorithm throws an exception and ExecutionPolicy is one of the standard policies, std::terminate is called. For any other ExecutionPolicy, the behavior is implementation-defined.
  • If the algorithm fails to allocate memory, std::bad_alloc is thrown.

[edit] Possible implementation

See also the implementations of

all_of
template<class InputIt, class UnaryPred>
constexpr bool all_of(InputIt first, InputIt last, UnaryPred p)
{
    return std::find_if_not(first, last, p) == last;
}
any_of
template<class InputIt, class UnaryPred>
constexpr bool any_of(InputIt first, InputIt last, UnaryPred p)
{
    return std::find_if(first, last, p) != last;
}
none_of
template<class InputIt, class UnaryPred>
constexpr bool none_of(InputIt first, InputIt last, UnaryPred p)
{
    return std::find_if(first, last, p) == last;
}

[edit] Example

#include <algorithm>
#include <functional>
#include <iostream>
#include <iterator>
#include <numeric>
#include <vector>
 
int main()
{
    std::vector<int> v(10, 2);
    std::partial_sum(v.cbegin(), v.cend(), v.begin());
    std::cout << "Among the numbers: ";
    std::copy(v.cbegin(), v.cend(), std::ostream_iterator<int>(std::cout, " "));
    std::cout << '\n';
 
    if (std::all_of(v.cbegin(), v.cend(), [](int i) { return i % 2 == 0; }))
        std::cout << "All numbers are even\n";
 
    if (std::none_of(v.cbegin(), v.cend(), std::bind(std::modulus<>(),
                                                     std::placeholders::_1, 2)))
        std::cout << "None of them are odd\n";
 
    struct DivisibleBy
    {
        const int d;
        DivisibleBy(int n) : d(n) {}
        bool operator()(int n) const { return n % d == 0; }
    };
 
    if (std::any_of(v.cbegin(), v.cend(), DivisibleBy(7)))
        std::cout << "At least one number is divisible by 7\n";
}

Output:

Among the numbers: 2 4 6 8 10 12 14 16 18 20
All numbers are even
None of them are odd
At least one number is divisible by 7

[edit] See also

checks if a predicate is true for all, any or none of the elements in a range
(niebloid)[edit]