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
The range trait does not work properly for all range types.
A new range trait using the ADL std::begin/end functions, such as this:
Other traits, such as is_iterator can also come from this reference repo.
is_iterator
The current implementation and the C++20 trait.
This traits is very simple and it was enough for our purposes, but it's quite easy to change that to the correct traits.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The problem
The range trait does not work properly for all range types.
Proposed solution
A new range trait using the ADL std::begin/end functions, such as this:
Other traits, such as
is_iterator
can also come from this reference repo.Alternatives I've considered
The current implementation and the C++20 trait.
Additional context
This traits is very simple and it was enough for our purposes, but it's quite easy to change that to the correct traits.
The text was updated successfully, but these errors were encountered: