We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello at all, reading https://en.cppreference.com/w/cpp/iterator/iterator_tags, i wonder, the inheritance structure of should forward_iterator_tag is correct herein.
Is the forward_iterator_tag not also inherit from sruct output_iterator_tag ?
it says struct forward_iterator_tag : public input_iterator_tag {}; // (4)
Were do I find a decise manual howto properly write my own iterators for my own classes. Yours, Frank.Haferkorn
The text was updated successfully, but these errors were encountered:
Not every forward iterator is writable, so no it should not.
Sorry, something went wrong.
No branches or pull requests
Hello at all,
reading https://en.cppreference.com/w/cpp/iterator/iterator_tags,
i wonder, the inheritance structure of should forward_iterator_tag is correct herein.
Is the forward_iterator_tag not also inherit from sruct output_iterator_tag ?
it says
struct forward_iterator_tag : public input_iterator_tag {}; // (4)
Were do I find a decise manual howto properly write my own iterators for my own classes.
Yours,
Frank.Haferkorn
The text was updated successfully, but these errors were encountered: