Collection - Set
Collection - Set 기본 개념 - 순서가 없다!! - 중복이 없는 유니크한 아이템을 관리할때 사용한다. import UIKit var someArray: Array = [1, 2, 3,1] //[1, 2, 3, 1] var someSet: Set = [1,2,3,1,2] //{3, 1, 2} // collection의 공통 property someSet.isEmpty someSet.count someSet.contains(1) //true someSet.insert(5) someSet //{3, 1, 2, 5} someSet.remove(1) someSet //{2, 5, 3}
2021. 10. 10.