let
クイックフィックスを使用すると、冗長な let 呼び出しが除去されます。
例:
fun test(s: String?): Int? = s?.let { it.length }
クイックフィックス適用後:
fun test(s: String?): Int? = s?.length