Suppose there´s a template function in C++ that does some useful work but also outputs a sequence of values via an output iterator. Now suppose that that sequence of values sometimes is interesting, but at others is not useful. Is there a ready-to-use iterator class in the STL that can be instantiated and passed to the function and will ignore any values the function tries to assign to the output iterator? To put in another way, send all data to /dev/null?
|
|
The STL does not provide such an iterator. But you could code it yourself (tested that code):
It doesn't need any data by using itself as the result of Edit: Let's go into how this
That the result of those expressions is not used. That's what makes this work:
Now we don't need to have any data that we return in |
||||||
|
|
|
It isn't hard to write one.
I haven't tested this, and there's probably something important missing, but I think this is the idea. |
||
|
|
|
Do you have Boost available? If so you could use a function_output_iterator wrapping an empty function. It's not ideal though. Whatever iterator you use will still need to create an instance of the value_type for return in operator*, even if it then throws it away. |
|||
|
|
