-
Notifications
You must be signed in to change notification settings - Fork 268
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
Expliciting lifetime in the first example #351
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,9 +32,10 @@ explicitly is *extremely noisy*. All Rust code relies on aggressive inference | |
and elision of "obvious" things. | ||
|
||
One particularly interesting piece of sugar is that each `let` statement | ||
implicitly introduces a scope. For the most part, this doesn't really matter. | ||
However it does matter for variables that refer to each other. As a simple | ||
example, let's completely desugar this simple piece of Rust code: | ||
implicitly introduces a scope immediately after the declaration. For the most part, | ||
this doesn't really matter. However it does matter for variables that refer to | ||
each other. As a simple example, let's completely desugar this simple piece of | ||
Rust code: | ||
|
||
```rust | ||
let x = 0; | ||
|
@@ -47,21 +48,24 @@ likely desugar to the following: | |
|
||
<!-- ignore: desugared code --> | ||
```rust,ignore | ||
// NOTE: `'a: {` and `&'b x` is not valid syntax! | ||
'a: { | ||
// NOTE: `'global_lifetime: {` and `&'x_lifetime x` is not valid syntax! | ||
'global_lifetime: { | ||
let x: i32 = 0; | ||
'b: { | ||
// lifetime used is 'b because that's good enough. | ||
let y: &'b i32 = &'b x; | ||
'c: { | ||
// ditto on 'c | ||
let z: &'c &'b i32 = &'c y; | ||
'x_lifetime: { | ||
// lifetime used is 'x_lifetime because that's good enough. | ||
let y: &'x_lifetime i32 = &'x_lifetime x; | ||
'y_lifetime: { | ||
// ditto on 'y_lifetime | ||
let z: &'y_lifetime &'x_lifetime i32 = &'y_lifetime y; | ||
} | ||
} | ||
} | ||
``` | ||
|
||
Wow. That's... awful. Let's all take a moment to thank Rust for making this easier. | ||
Wow. That's... awful. Let's all take a moment to thank Rust for making this | ||
easier. To make matter worse, traditionally, lifetimes are not as descriptive | ||
and simply called `'a`, `'b`, and so on. We will respect this tradition going | ||
forward. | ||
Comment on lines
+65
to
+68
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think this change is much helpful for readers and worth rephrasing so. As stated in the intro, we assume readers have a basic knowledge of Rust, actually, https://doc.rust-lang.org/nightly/book/ch10-03-lifetime-syntax.html#lifetime-annotation-syntax explains it and that should be enough. |
||
|
||
Actually passing references to outer scopes will cause Rust to infer | ||
a larger lifetime: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After some re-thinking of this, I still think this is too descriptive. We easily can find
'a
is a lifetime and curly braces are scopes if we're familiar with Rust's syntax. That is, naming lifetimes looks redundant, and tweaking prior wording should be enough here.