#Rust [[ライフタイム]]を示すための引数名。以下の`'a`のこと。 ```rust fn longest<'a>(x: &'a str, y: &'a str) -> &'a str { ``` [[ライフタイム引数]]はアポストロフィーで始まらなければならず、すべて小文字の必要がある。