[Kotlin] 코틀린 연산자 오버로딩 #2 컬렉션, in, rangeTo, iterator, destructuring, Property delegation, by
이 글은 Kotlin In Action을 참고 하였습니다.더욱 자세한 설명이나 예제는 직접 책을 구매하여 확인 하시기 바랍니다7.3 Collection과 range의 convention 컬렉션에서 가장 많이 쓰는 연산은 읽기, 넣기, 원소가 있는지 확인하기(contains) 입니다.코틀린에서는 특이하게 a[b] 처럼 배열 형태로 collection을 읽을수 있으며 이 또한 convention으로 처리합니다. 7.3.1 Index operator배열은 array[index]형태로 접근하며, collection에서 같은 방법을 제공하기 위해 index 연산자로 get 과 set을 제공합니다.data class Point(val x: Int, val y: Int) operator fun Point.get(in..