mirror of
https://github.com/yattee/yattee.git
synced 2024-12-12 21:30:32 +05:30
9 lines
219 B
Swift
9 lines
219 B
Swift
import Foundation
|
|
|
|
extension Sequence where Iterator.Element: Hashable {
|
|
func unique() -> [Iterator.Element] {
|
|
var seen: Set<Iterator.Element> = []
|
|
return filter { seen.insert($0).inserted }
|
|
}
|
|
}
|