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
Fully document all forms of lifetime elision #19662
Comments
|
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this issue
Dec 11, 2014
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this issue
Dec 13, 2014
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this issue
Dec 26, 2014
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Jan 5, 2015
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this issue
Jan 5, 2015
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Jan 6, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The ownership guide goes into it briefly, but does not for example give the most important one:
foo(&a, &b, &c, ..) -> &z
is an elision offoo<'a, 'b, 'c, ..>(&'a a, &'b b, &'c c, ..) &'a z
(output gets lifetime of first input).Not sure if there are other elisions left in the wild.
The text was updated successfully, but these errors were encountered: