c/rust · by lysdexic@programming.dev · 3yCommon Rust Lifetime Misconceptions (2020) https://github.com/pretzelhammer/rust-blog/blob/master/posts/common-rust-lifetime-misconceptions.md36 points · 5 comments · view on lemmy.world
5 Comments
robinm@programming.dev · 5 pts · 3y
That's a very nicecly written article.
Just a quick question, isn't point 8 outdated (misconctption: “Rust borrow checker does adanced liftime analysis”) due to the introduction NLL (no lexical lifetime) in Rust 2018?
hairyballs@programming.dev · 1 pts · 3y
There are still obvious things the BC cannot get. For example:
sirdorius@programming.dev · 2 pts · 3y
This looks like a pretty easy fix that the compiler could do by extracting the argument to a temp variable to improve the syntax of the language.
KillTheMule@programming.dev · 1 pts · 3y
Note that when you change
numto take&selfinstead, this works out (you also need to markfooas mutable, of course).hairyballs@programming.dev · 1 pts · 3y
It's a toy example. In that case, the solution is to assign the expression to a variable to compute its result upfront.