mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
14 lines
302 B
Swift
14 lines
302 B
Swift
extension Array where Element: Equatable {
|
|
func next(after element: Element) -> Element? {
|
|
let idx = firstIndex(of: element)
|
|
|
|
if idx.isNil {
|
|
return first
|
|
}
|
|
|
|
let next = index(after: idx!)
|
|
|
|
return self[next == endIndex ? startIndex : next]
|
|
}
|
|
}
|