[Kotlin] Collection - List / Set / Map
Collection 이란? 데이터를 저장하는 기본 자료 구조들을 한 곳에 모아 관리와 사용을 편하게 하기 위해 제공하는 프레임 워크를 말한다. 크게 List, Set, Map 으로 나뉜다. collection 안에 있는 object들을 elements 또는 items라고 부른다. 일반적으로 같은 유형의 개체 수(이 숫자는 0일 수도 있음)를 포함한다. Collection types The Kotlin Standard Library provides implementations for basic collection types: sets, lists, and maps. A pair of interfaces represent each collection type: A read-only(immutable) int..