With1 코틀린 확장함수 Scope함수 apply, with, let, also, run 이란? Scope함수 apply, with, let, also, run 사용방법 각 Scope 함수들의 내부 모습(apply와 with 차이도 설명) 사용 및 응용 예시 Scope 함수를 사용할 때 주의 사항 HTML 삽입 미리보기할 수 없는 소스 표준 확장함수들(Scope 함수)의 내부 모습 inline fun with(receiver: T, block: T.() -> R): R { return receiver.block() } inline fun T.also(block: (T) -> Unit): T { block(this) return this } inline fun T.apply(block: T.() -> Unit): T { block() return this } inline fun T.let(block:.. 2023. 1. 16. 이전 1 다음