Prev | Next |
# include <cppad/utility/set_union.hpp>
result = set_union(left, right)
std::union
operation.
const std::set<Element>& left
const std::set<Element>& right
std::set<Element>& result
It contains the union of
left
and
right
.
Note that C++11 detects that the return value is a temporary
and uses it for the result instead of making a separate copy.