cppannotations/yo/stl/setunion.yo
fbbrokken 6881bc3814 The trunk directory contains the latest version (6.4.0c) of the C++
Annotations. 

The branches and tags directory are empty, since I couldn't
svnadmin import a repostitory dump. Many earlier versions exist, though, and
if you want the full archive, just let me know and I'll send you the svnadmin
dump of my full C++ Annotations archive.

Frank B. Brokken <f.b.brokken@rug.nl>



git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@3 f6dd340e-d3f9-0310-b409-bdd246841980
2006-09-04 08:26:34 +00:00

35 lines
1.7 KiB
Text

hi(set_union())
itemization(
it() Header file:
centt(#include <algorithm>)
it() Function prototypes:
itemization(
itt(OutputIterator set_union+OPENPARInputIterator1 first1,
InputIterator1 last1,)linebreak()
tt(InputIterator2 first2, InputIterator2 last2,
OutputIterator result+CLOSEPAR;)
itt(OutputIterator set_union+OPENPARInputIterator1 first1,
InputIterator1 last1,)linebreak()
tt(InputIterator2 first2, InputIterator2 last2,
OutputIterator result,)linebreak()
tt(Compare comp+CLOSEPAR;)
)
it() Description:
itemization(
it() The first prototype: a sorted sequence of the elements that
are present in either the range rangett(first1, last1) or the range
rangett(first2, last2) or in both ranges 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. Note that in the final range each element will
appear only once.
it() The second prototype: a sorted sequence of the elements that
are present in either the range rangett(first1, last1) or the range
rangett(first2, last2) or in both ranges 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 tt(comp) function object. Note that
in the final range each element will appear only once.
)
it() Example:
verbinclude(stl/cc/setunion.cc)
)