mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
16 lines
411 B
Swift
16 lines
411 B
Swift
extension CaseIterable where Self: Equatable {
|
|
func next(nilAtEnd: Bool = false) -> Self! {
|
|
let all = Self.allCases
|
|
let index = all.firstIndex(of: self)!
|
|
let next = all.index(after: index)
|
|
|
|
if nilAtEnd == true {
|
|
if next == all.endIndex {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
return all[next == all.endIndex ? all.startIndex : next]
|
|
}
|
|
}
|