From Jason Turner

[alg.none_of]

Diff to HTML by rtfpessoa

tmp/tmp5mtbcfmb/{from.md → to.md} RENAMED
@@ -1,10 +1,13 @@
1
  ### None of <a id="alg.none_of">[[alg.none_of]]</a>
2
 
3
  ``` cpp
4
  template <class InputIterator, class Predicate>
5
  bool none_of(InputIterator first, InputIterator last, Predicate pred);
 
 
 
6
  ```
7
 
8
  *Returns:* `true` if \[`first`, `last`) is empty or if `pred(*i)` is
9
  `false` for every iterator `i` in the range \[`first`, `last`), and
10
  `false` otherwise.
 
1
  ### None of <a id="alg.none_of">[[alg.none_of]]</a>
2
 
3
  ``` cpp
4
  template <class InputIterator, class Predicate>
5
  bool none_of(InputIterator first, InputIterator last, Predicate pred);
6
+ template <class ExecutionPolicy, class ForwardIterator, class Predicate>
7
+ bool none_of(ExecutionPolicy&& exec, ForwardIterator first, ForwardIterator last,
8
+ Predicate pred);
9
  ```
10
 
11
  *Returns:* `true` if \[`first`, `last`) is empty or if `pred(*i)` is
12
  `false` for every iterator `i` in the range \[`first`, `last`), and
13
  `false` otherwise.