tmp/tmpyy3jhqi0/{from.md → to.md}
RENAMED
|
@@ -1,10 +1,9 @@
|
|
| 1 |
#### `set_union` <a id="set.union">[[set.union]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
template<class InputIterator1, class InputIterator2,
|
| 5 |
-
class OutputIterator>
|
| 6 |
constexpr OutputIterator
|
| 7 |
set_union(InputIterator1 first1, InputIterator1 last1,
|
| 8 |
InputIterator2 first2, InputIterator2 last2,
|
| 9 |
OutputIterator result);
|
| 10 |
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
|
|
@@ -13,12 +12,11 @@ template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
|
|
| 13 |
set_union(ExecutionPolicy&& exec,
|
| 14 |
ForwardIterator1 first1, ForwardIterator1 last1,
|
| 15 |
ForwardIterator2 first2, ForwardIterator2 last2,
|
| 16 |
ForwardIterator result);
|
| 17 |
|
| 18 |
-
template<class InputIterator1, class InputIterator2,
|
| 19 |
-
class OutputIterator, class Compare>
|
| 20 |
constexpr OutputIterator
|
| 21 |
set_union(InputIterator1 first1, InputIterator1 last1,
|
| 22 |
InputIterator2 first2, InputIterator2 last2,
|
| 23 |
OutputIterator result, Compare comp);
|
| 24 |
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
|
|
|
|
| 1 |
#### `set_union` <a id="set.union">[[set.union]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
template<class InputIterator1, class InputIterator2, class OutputIterator>
|
|
|
|
| 5 |
constexpr OutputIterator
|
| 6 |
set_union(InputIterator1 first1, InputIterator1 last1,
|
| 7 |
InputIterator2 first2, InputIterator2 last2,
|
| 8 |
OutputIterator result);
|
| 9 |
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
|
|
|
|
| 12 |
set_union(ExecutionPolicy&& exec,
|
| 13 |
ForwardIterator1 first1, ForwardIterator1 last1,
|
| 14 |
ForwardIterator2 first2, ForwardIterator2 last2,
|
| 15 |
ForwardIterator result);
|
| 16 |
|
| 17 |
+
template<class InputIterator1, class InputIterator2, class OutputIterator, class Compare>
|
|
|
|
| 18 |
constexpr OutputIterator
|
| 19 |
set_union(InputIterator1 first1, InputIterator1 last1,
|
| 20 |
InputIterator2 first2, InputIterator2 last2,
|
| 21 |
OutputIterator result, Compare comp);
|
| 22 |
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
|