Enum 타입에서 사용할 수 있는 프로토콜이다 (Swift 5.2~)
Iterable: 반복가능한
💥CaseIterable 채택시 아래의 타입 계산 속성이 자동으로 구현된다.
static var allCases: Self.AllCases { get }
연관값이 있는경우 CaseIterable 프로토콜을 따르지 않아 구현할 수 없다.⭐️⭐️⭐️⭐️
❗️원시값은 상관없음
구글링 해보면 방법이 있긴 하다고한다 😅
❓allCases 타입 계산속성은 뭘 하는 놈일까?
CaseIterable을 채택한 열거형의 모든 케이스를 가지고 있는 배열
CaseIterable 구현 예제
enum CompassDirection: CaseIterable {
case north
case south
case east
case west
}
let allDirections = CompassDirection.allCases
print(allDirections) // prints "[north, south, east, west]"
CaseIterable 활용 예제
enum Color: CaseIterable {
case red, green, blue, yellow, purple, orange
static func random() -> Color {
let allColors = self.allCases
let randomIndex = Int.random(in: 0..<allColors.count)
return allColors[randomIndex]
}
}
let randomColor = Color.random()
색깔을 랜덤으로 가져올 수 있는 random()함수 내에서의 allCase활용
print("방향은 \(CompassDirection.allCases.count)가지")
케이스의 갯수를 세기 편해짐(케이스를 늘려도 고칠 필요가 없음)⭐️⭐️
let caseList = CompassDirection.allCases.map{ "\($0)" }.joined(separator: ", ")
// "north, south, east, weat"
배열이므로 고차함수를 이용할 수 있다.
enum을 map을 활용해서 문자열 배열로 만들 수 있고, joined를 활용해서 단일 문자열로 만들 수 있다.