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
IndexMut docs:
IndexMut
pub trait IndexMut<Index, Result> { fn index_mut(&'a mut self, index: &Index) -> &'a mut Result; }
But this is what the code says:
pub trait IndexMut<Index, Result> { fn index_mut<'a>(&'a mut self, index: &Index) -> &'a mut Result; }
What happened to the <'a>? We need it for clarity!
<'a>
The text was updated successfully, but these errors were encountered:
These aren't 'generics', but yeah, this is a bug for sure.
Sorry, something went wrong.
They may not be 'generics' (whatever you mean by that) but they are generics—just generic lifetime parameters rather than generic type parameters.
Dup of #14462
Dunno quite how I managed to miss that one…
Auto merge of rust-lang#16228 - Veykril:arch.md, r=Veykril
22f189b
minor: Add some more crates to architecture.md
No branches or pull requests
IndexMut
docs:But this is what the code says:
What happened to the
<'a>
? We need it for clarity!The text was updated successfully, but these errors were encountered: