From Jason Turner

[alg.none_of]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpha5d7q3m/{from.md → to.md} +0 -16
tmp/tmpha5d7q3m/{from.md → to.md} RENAMED
@@ -1,16 +0,0 @@
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.
14
-
15
- *Complexity:* At most `last - first` applications of the predicate.
16
-