Skip to content
New issue

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

When bit_iterator<It1>::difference_type and bit_iterator<It2>::difference_type can be different? #9

Open
viboes opened this issue Sep 3, 2017 · 2 comments

Comments

@viboes
Copy link

viboes commented Sep 3, 2017

There are operations such as bit_iterator - bit_iterator that results in common_type of of the difference_types

friend constexpr typename std::common_type<

However the difference_type is not defined explicitly depending on the Iterator.

Does it means that bit_iterator<It> could depend on it It?
Why the wording doesn't require it to be It::diference_type?

@vreverdy
Copy link
Owner

vreverdy commented Sep 3, 2017

The only case where difference_type would be different would be user-specialized bit iterators. The wording does not require it to be It::difference_type, because implementations should have the possibility to choose a wider type than std::ptrdiff_t because there are more bits than bytes in memory. Does that answer the question? Do you think that should be different?

@viboes
Copy link
Author

viboes commented Sep 4, 2017

I didn't know that the user could specialize those templates. In which cases and how the user can specialize them? I don't see how it could specialize bit_pointer, or bit_iterator<array<unsigned,10>::iterator>?

Do you have a concrete case?

@viboes viboes changed the title When bit_iterator<It1>::difference_type and bit_iterator<It2>::difference_type canbe different? When bit_iterator<It1>::difference_type and bit_iterator<It2>::difference_type can be different? Sep 4, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants