CGAL 5.2.2 - STL Extensions for CGAL
|
#include <CGAL/iterator.h>
O.
The class Dispatch_output_iterator
defines an OutputIterator
that contains a tuple of output iterators, and dispatches among those based on the type of the value type which is put in it.
Other types are also accepted, and the object is discarded in this case. Besides defining assignment for all parameters of V
and for a tuple of type V
, it is also defined for the types boost::variant<T...>
and boost::optional<boost::variant<T...> >
, where T...
can be a list of arbitrary types.
It also inherits from O
, which makes it easy to treat like a tuple.
Parameters
V | must be a std::tuple<...> of the types of values to be accepted and dispatched. |
O | must be a std::tuple<...> of the types of corresponding output iterators. |
CGAL::Dispatch_or_drop_output_iterator<V,O>
Related Functions | |
(Note that these are not member functions.) | |
template<typename... V, typename... O> | |
Dispatch_output_iterator< tuple< V... >, tuple< O... > > | dispatch_output (O... o) |
Types | |
typedef V | Value_type_tuple |
typedef O | Iterator_tuple |
Creation | |
Dispatch_output_iterator (I...o) | |
Constructor taking all the output iterators. | |
const Iterator_tuple & | get_iterator_tuple () const |
returns a reference to the tuple of output iterators. | |
|
related |
Dispatch_output_iterator
constructed from the arguments.