범위 관례 인덱스로 원소 접근 Get, Set 콜렉션에서 가장 많이 쓰이는 연산은 인덱스를 이용해 읽고 쓰는 연산 자바에서 배열 원소에 접근할때 [ ] 를 사용하는 것처럼 코틀린의 맵에서도 이를 사용한다. callbackParamMap["success"] = true /** * Allows to use the index operator for storing values in a mutable map. */ @kotlin.internal.InlineOnly public inline operator fun MutableMap.set(key: K, value: V): Unit { put(key, value) } class ExampleUnitTest { @Test fun test() { val list = m..