You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rustlings/exercises/lifetimes
Magnus Markling 291da61fda
Add quotes
2 years ago
..
README.md feat: add lifetimes exercises 2 years ago
lifetimes1.rs Add quotes 2 years ago
lifetimes2.rs Add quotes 2 years ago
lifetimes3.rs feat: add lifetimes exercises 2 years ago

README.md

Lifetimes

Lifetimes tell the compiler how to check whether references live long enough to be valid in any given situation. For example lifetimes say "make sure parameter 'a' lives as long as parameter 'b' so that the return value is valid".

They are only necessary on borrows, i.e. references, since copied parameters or moves are owned in their scope and cannot be referenced outside. Lifetimes mean that calling code of e.g. functions can be checked to make sure their arguments are valid. Lifetimes are restrictive of their callers.

Further information