mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
32 lines
1.6 KiB
Text
32 lines
1.6 KiB
Text
hi(set_symmetric_difference)
|
|
itemization(
|
|
it() Header file: tt(<algorithm>)
|
|
it() Function prototypes:
|
|
itemization(
|
|
itt(OutputIterator set_symmetric_difference(InputIterator1
|
|
first1, InputIterator1 last1, InputIterator2 first2,
|
|
InputIterator2 last2, OutputIterator result);)
|
|
itt(OutputIterator set_symmetric_difference(InputIterator1 first1,
|
|
InputIterator1 last1, InputIterator2 first2, InputIterator2
|
|
last2, OutputIterator result, Compare comp);)
|
|
)
|
|
it() Description:
|
|
itemization(
|
|
it() The first prototype: a sorted sequence of the elements
|
|
pointed to by the range rangett(first1, last1) that are not present in the
|
|
range rangett(first2, last2) and those in the range rangett(first2, last2)
|
|
that are not present in the range rangett(first1, last1) is returned, starting
|
|
at tt(result), and ending at the tt(OutputIterator) returned by the
|
|
function. The elements in the two ranges must have been sorted using
|
|
ti(operator<) of the data type to which the iterators point.
|
|
it() The second prototype: a sorted sequence of the elements
|
|
pointed to by the range rangett(first1, last1) that are not present in the
|
|
range rangett(first2, last2) and those in the range rangett(first2, last2)
|
|
that are not present in the range rangett(first1, last1) is returned, starting
|
|
at tt(result), and ending at the tt(OutputIterator) returned by the
|
|
function. The elements in the two ranges must have been sorted using the
|
|
tt(comp) function object.
|
|
)
|
|
it() Example:
|
|
verbinclude(-a examples/setsymmetricdifference.cc)
|
|
)
|