범위 지정 함수와 수신 객체에 대하여
범위 지정 함수의 정의는 코틀린 공식 문서에서 볼 수 있다. The Kotlin standard library contains several functions whose sole purpose is to execute a block of code within the context of an object. When you call such a function on an object with a lambda expression provided, it forms a temporary scope. In this scope, you can access the object without its name. Such functions are called scope functions. 쉽게 말하면 특정 범위 안에서 객체..