tmp/tmp2ahbbrhx/{from.md → to.md}
RENAMED
|
@@ -2,15 +2,24 @@
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class InputIterator1, class InputIterator2>
|
| 5 |
bool includes(InputIterator1 first1, InputIterator1 last1,
|
| 6 |
InputIterator2 first2, InputIterator2 last2);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
template<class InputIterator1, class InputIterator2, class Compare>
|
| 9 |
bool includes(InputIterator1 first1, InputIterator1 last1,
|
| 10 |
InputIterator2 first2, InputIterator2 last2,
|
| 11 |
Compare comp);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
```
|
| 13 |
|
| 14 |
*Returns:* `true` if \[`first2`, `last2`) is empty or if every element
|
| 15 |
in the range \[`first2`, `last2`) is contained in the range \[`first1`,
|
| 16 |
`last1`). Returns `false` otherwise.
|
|
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class InputIterator1, class InputIterator2>
|
| 5 |
bool includes(InputIterator1 first1, InputIterator1 last1,
|
| 6 |
InputIterator2 first2, InputIterator2 last2);
|
| 7 |
+
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2>
|
| 8 |
+
bool includes(ExecutionPolicy&& exec,
|
| 9 |
+
ForwardIterator1 first1, ForwardIterator1 last1,
|
| 10 |
+
ForwardIterator2 first2, ForwardIterator2 last2);
|
| 11 |
|
| 12 |
template<class InputIterator1, class InputIterator2, class Compare>
|
| 13 |
bool includes(InputIterator1 first1, InputIterator1 last1,
|
| 14 |
InputIterator2 first2, InputIterator2 last2,
|
| 15 |
Compare comp);
|
| 16 |
+
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2, class Compare>
|
| 17 |
+
bool includes(ExecutionPolicy&& exec,
|
| 18 |
+
ForwardIterator1 first1, ForwardIterator1 last1,
|
| 19 |
+
ForwardIterator2 first2, ForwardIterator2 last2,
|
| 20 |
+
Compare comp);
|
| 21 |
```
|
| 22 |
|
| 23 |
*Returns:* `true` if \[`first2`, `last2`) is empty or if every element
|
| 24 |
in the range \[`first2`, `last2`) is contained in the range \[`first1`,
|
| 25 |
`last1`). Returns `false` otherwise.
|