let
run
apply
also
대응하는 함수를 사용하면 코드가 더 단순해집니다.
빠른 수정에서는 범위 함수를 다른 함수로 바꿉니다.
예:
val x = "".let { it.length }
빠른 수정을 적용한 후:
val x = "".run { length }