Introducing init/uninit before its use (#355)

pull/364/head
Arthur Milchior 3 years ago committed by GitHub
parent eaa3a92cc5
commit 10d40c59a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,7 +18,10 @@ fn main() {
``` ```
This is based off of a basic branch analysis: every branch must assign a value This is based off of a basic branch analysis: every branch must assign a value
to `x` before it is first used. Interestingly, Rust doesn't require the variable to `x` before it is first used. For short, we also say that "`x` is init" or
"`x` is uninit".
Interestingly, Rust doesn't require the variable
to be mutable to perform a delayed initialization if every branch assigns to be mutable to perform a delayed initialization if every branch assigns
exactly once. However the analysis does not take advantage of constant analysis exactly once. However the analysis does not take advantage of constant analysis
or anything like that. So this compiles: or anything like that. So this compiles:

Loading…
Cancel
Save