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
extend_next
Like the extend method of many standard containers, this would take an iterator of extension structs and add them all:
extend
pub fn extend_next( self, next: impl IntoIterator<Item = &'a mut dyn ExtendsWhatever>, ) -> Self
The text was updated successfully, but these errors were encountered:
That seems like a lot of extra generated code for something that could be addressed with a three-line for loop on the caller's side.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Like the
extend
method of many standard containers, this would take an iterator of extension structs and add them all:The text was updated successfully, but these errors were encountered: