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
if input of these algorithms models AssociativeSequence, then output will model AssociativeSequence, because:
erase and erase_key use: iterator_range, joint_view pop_back and pop_front use: iterator_range
iterator_range and joint_view preserve associability
if input of these algorithms models AssociativeSequence, then output will not model AssociativeSequence, because:
push_back and push_front use: single_view, joint_view insert and insert_range use: iterator_range, single_view, joint_view
single_view does not model AssociativeSequence
The text was updated successfully, but these errors were encountered:
No branches or pull requests
if input of these algorithms models AssociativeSequence, then output will model AssociativeSequence, because:
if input of these algorithms models AssociativeSequence, then output will not model AssociativeSequence, because:
can fusion let single_view model AssociativeSequence?
The text was updated successfully, but these errors were encountered: